14 lines
265 B
Python
14 lines
265 B
Python
# standard import
|
|
|
|
# third-party imports
|
|
import celery
|
|
|
|
# export external celery task modules
|
|
from .callback_handler import *
|
|
from .metadata import *
|
|
from .notifications import *
|
|
from .processor import *
|
|
from .ussd_session import *
|
|
|
|
celery_app = celery.current_app
|