dograh/api/services/telephony/providers/__init__.py
2026-06-04 16:30:56 +05:30

18 lines
482 B
Python

"""Telephony provider implementations.
Importing this module triggers each provider package to register itself
with ``api.services.telephony.registry``. Adding a new provider requires
exactly one new line below — no edits to factory, audio_config, schemas,
or run_pipeline.
"""
from api.services.telephony.providers import ( # noqa: F401 -- import for side effects (registration)
ari,
cloudonix,
exotel,
plivo,
telnyx,
twilio,
vobiz,
vonage,
)