Mercurial > public > sg101
view potd/tasks.py @ 750:aeafbf3ecebf
For #63, upgrade to celery 3.1.7.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 31 Dec 2013 16:36:22 -0600 |
parents | ee87ea74d46b |
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()