Mercurial > public > sg101
view potd/tasks.py @ 769:cd3343abca9d
For issue #66, member search function should use GET method.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 22 Jan 2014 20:07:39 -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()