Files
call-center/services/real_time_voice/app.py
T
2026-05-09 09:16:06 +05:00

16 lines
359 B
Python

from __future__ import annotations
"""
Compatibility entrypoint for the real-time voice service.
This module allows running the voice runtime under:
`services.real_time_voice.app:app`
while reusing the canonical implementation from:
`services.ai_voice_runtime_service.app:app`.
"""
from services.ai_voice_runtime_service.app import app
__all__ = ["app"]