2021-02-06 16:13:47 +01:00
|
|
|
# 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
|
2021-03-04 17:47:13 +01:00
|
|
|
from .logger import *
|
|
|
|
from .ussd_session import *
|
|
|
|
from .callback_handler import *
|
|
|
|
from .metadata import *
|