This repository has been archived on 2020-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
magic-app/magic_app/tasks.py
2020-07-04 13:12:31 +02:00

8 lines
120 B
Python

"""Celery tasks module."""
from magic_app.app import celery
@celery.task
def hello_world():
print("Hello, World")