bgneal@515: """
bgneal@515: Celery tasks for the POTD app.
bgneal@515: 
bgneal@515: """
bgneal@515: from celery.task import task
bgneal@515: 
bgneal@515: import potd.tools
bgneal@515: 
bgneal@515: 
bgneal@515: @task
bgneal@515: def pick_potd():
bgneal@515:     potd.tools.pick_potd()