1e7fff0133
- Renames s_assemble to s_brief - Link s_local to s_brief
17 lines
359 B
Python
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 *
|