view gpp/potd/tasks.py @ 526:dd97341788fa

For #194, we no longer need the mailer application.
author Brian Neal <bgneal@gmail.com>
date Mon, 19 Dec 2011 01:21:09 +0000
parents ae89ba801e8b
children
line wrap: on
line source
"""
Celery tasks for the POTD app.

"""
from celery.task import task

import potd.tools


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