feat: 添加语音模块支持,优化服务启动方式
This commit is contained in:
13
shared/modules/voice/index.ts
Normal file
13
shared/modules/voice/index.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
export const VOICE_MODULE = 'voice' as const
|
||||
|
||||
export interface VoiceModule {
|
||||
id: typeof VOICE_MODULE
|
||||
name: '语音'
|
||||
icon: 'mic'
|
||||
}
|
||||
|
||||
export const voiceModule: VoiceModule = {
|
||||
id: VOICE_MODULE,
|
||||
name: '语音',
|
||||
icon: 'mic',
|
||||
}
|
||||
Reference in New Issue
Block a user