diff --git a/pkg/channels/qq/qq.go b/pkg/channels/qq/qq.go index 45d056717..bb26c6938 100644 --- a/pkg/channels/qq/qq.go +++ b/pkg/channels/qq/qq.go @@ -1082,3 +1082,8 @@ func processEmoji(match string) string { } return "" } + +// VoiceCapabilities returns the voice capabilities of the channel. +func (c *QQChannel) VoiceCapabilities() channels.VoiceCapabilities { + return channels.VoiceCapabilities{ASR: true, TTS: true} +}