mirror of
https://github.com/reconurge/flowsint.git
synced 2026-05-06 19:58:38 -05:00
8 lines
178 B
Python
8 lines
178 B
Python
from celery import Celery
|
|
|
|
celery_app = Celery(
|
|
"flowsint",
|
|
broker="redis://127.0.0.1:6379/0",
|
|
backend="redis://127.0.0.1:6379/0",
|
|
include=["app.tasks.scanner"]
|
|
) |