cic-stack/apps/cic-ussd/cic_ussd/tasks/__init__.py

14 lines
265 B
Python
Raw Normal View History

2021-02-06 16:13:47 +01:00
# standard import
# third-party imports
import celery
# export external celery task modules
from .callback_handler import *
from .metadata import *
2021-07-20 18:18:27 +02:00
from .notifications import *
from .processor import *
2021-08-06 18:29:01 +02:00
from .ussd_session import *
celery_app = celery.current_app