view potd/tasks.py @ 704:809d27b385f2

For user uploaded photos (#50), add a simple gallery view.
author Brian Neal <bgneal@gmail.com>
date Sun, 15 Sep 2013 15:13:02 -0500
parents ee87ea74d46b
children aeafbf3ecebf
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()