You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
voicebot/icspacketparser/icsttsparser.go

21 lines
326 B
Go

package icspacketparser
import "gitlab.com/cinnamon/voiceagent/icserror"
type TTS struct {
Text string
}
func NewTTS() TTS {
tts := TTS{}
return tts
}
func (t *TTS) TTSParser(req string) (err *icserror.IcsError) {
return nil
}
func (t *TTS) GetPacketData(request interface{}) (err *icserror.IcsError) {
return nil
}