mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-06-15 17:25:26 -04:00
10 lines
177 B
Python
10 lines
177 B
Python
# services/tts/__init__.py
|
|
"""TTS service — text-to-speech."""
|
|
|
|
from .tts_service import (
|
|
TTSService,
|
|
get_tts_service,
|
|
)
|
|
|
|
__all__ = ["TTSService", "get_tts_service"]
|