"""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' ]