cic-internal-integration/apps/cic-ussd/cic_ussd/tasks/__init__.py
Louis Holbrook 1e7fff0133 Minor refactors:
- Renames s_assemble to s_brief
-  Link s_local to s_brief
2021-03-04 16:47:13 +00:00

17 lines
359 B
Python

# standard import
import os
import logging
import urllib
import json
# third-party imports
# this must be included for the package to be recognized as a tasks package
import celery
celery_app = celery.current_app
# export external celery task modules
from .logger import *
from .ussd_session import *
from .callback_handler import *
from .metadata import *