Skip to content

Instantly share code, notes, and snippets.

@coffindragger
coffindragger / tasks.py
Last active September 8, 2017 16:38 — forked from anonymous/tasks.py
from mainsite.celeryapp import app
class SimpleTask(LockedTask):
task_key = "simple_task"
def run(self):
return "hello world"
simple_task = SimpleTask.as_task(app)