tasks.py 95 B

123456
  1. from celery.task import task
  2. @task()
  3. def hello_world(to="world"):
  4. return "Hello %s" % to