view potd/tasks.py @ 876:07e4622f7aef

Add 2014 MP3 comp link to sidebar block.
author Brian Neal <bgneal@gmail.com>
date Sat, 27 Dec 2014 12:53:22 -0600
parents aeafbf3ecebf
children
line wrap: on
line source
"""
Celery tasks for the POTD app.

"""
from __future__ import absolute_import

from celery import shared_task

import potd.tools


@shared_task
def pick_potd():
    potd.tools.pick_potd()