File size: 251 Bytes
94ecfcc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#!/usr/local/bin/python3
# coding: utf-8
# ytdlbot - flower_tasks.py
# 1/2/22 10:17
#
__author__ = "Benny <[email protected]>"
from celery import Celery
from config import BROKER
app = Celery("tasks", broker=BROKER, timezone="Europe/London")
|