This commit is contained in:
2026-03-25 12:39:54 +01:00
parent 87820051a7
commit 7abb819e76
6 changed files with 76 additions and 63 deletions

9
api/tasks.py Normal file
View File

@@ -0,0 +1,9 @@
from celery import Celery
app = Celery(
'prod',
broker='redis://localhost:6379/0'
)
if __name__ == '__main__':
app.start()