Michael Hu
refactor based on DDD
5009cb8
raw
history blame contribute delete
381 Bytes
"""Domain interfaces package."""
from .speech_recognition import ISpeechRecognitionService
from .translation import ITranslationService
from .speech_synthesis import ISpeechSynthesisService
from .audio_processing import IAudioProcessingService
__all__ = [
'ISpeechRecognitionService',
'ITranslationService',
'ISpeechSynthesisService',
'IAudioProcessingService'
]