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.
21 lines
326 B
Go
21 lines
326 B
Go
package icspacketparser
|
|
|
|
import "gitlab.com/cinnamon/voiceagent/icserror"
|
|
|
|
type STT struct {
|
|
Text string
|
|
}
|
|
|
|
func NewSTT() STT {
|
|
stt := STT{}
|
|
return stt
|
|
}
|
|
|
|
func (s *STT) STTParser(req string) (err *icserror.IcsError) {
|
|
return nil
|
|
}
|
|
|
|
func (s *STT) GetPacketData(request interface{}) (err *icserror.IcsError) {
|
|
return nil
|
|
}
|