mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-07 07:55:16 +02:00
13 lines
515 B
Python
13 lines
515 B
Python
"""Telephony package.
|
|
|
|
Importing this package eagerly loads every provider in
|
|
``api/services/telephony/providers/`` so each one self-registers with the
|
|
registry before any consumer (factory, routes, schemas) runs. Python
|
|
guarantees this ``__init__.py`` runs before any submodule of the package,
|
|
so submodules like ``factory`` and ``registry`` can stay free of provider
|
|
imports — no lazy flags, no cycle.
|
|
"""
|
|
|
|
from . import (
|
|
providers as _providers, # noqa: F401 -- import for side effects (registration)
|
|
)
|