// src/main/services/index.ts — 서비스 레지스트리 export { initLoggerService, getLogger } from './LoggerService' export { initConfigService, getConfigService, configGet, configSet, configGetAll, configReset, onConfigChanged } from './ConfigService' export { getLocalSTTService, LocalSTTService, STTState } from './LocalSTTService' export type { TranscriptionResult, TranscriptionSegment, TranscribeOptions, LocalSTTEvents } from './LocalSTTService' export { getHotkeyService } from './HotkeyService' export { getVoiceModeService } from './VoiceModeService' export { getAudioCaptureService } from './AudioCaptureService' export { getTextInsertService } from './TextInsertService' export { getLocalLLMService } from './LocalLLMService' export { getHistoryService } from './HistoryService' export { getDictionaryService } from './DictionaryService' export { getCustomInstructionService } from './CustomInstructionService'