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