8 lines
120 B
Python
8 lines
120 B
Python
|
"""Celery tasks module."""
|
||
|
from magic_app.app import celery
|
||
|
|
||
|
|
||
|
@celery.task
|
||
|
def hello_world():
|
||
|
print("Hello, World")
|