taskcluster/fx_desktop_qa_automation_taskgraph/__init__.py (10 lines of code) (raw):
from importlib import import_module
def register(graph_config):
_import_modules(
[
"target_tasks",
]
)
def _import_modules(modules):
for module in modules:
import_module(".{}".format(module), package=__name__)