6 lines
142 B
Python
6 lines
142 B
Python
"""Text-to-Speech services package."""
|
|
|
|
from .base import TTSProvider
|
|
from .service import TTSService
|
|
|
|
__all__ = ["TTSProvider", "TTSService"] |