1234567891011121314151617181920212223242526272829 |
- package model
- type SpeakerInfo struct {
- Name string `yaml:"name"`
- Ip string `yaml:"ip"`
- Branch byte `yaml:"branch"`
- Speed byte `yaml:"branch"`
- Volume byte `yaml:"branch"`
- }
- type PlayReq struct {
- Url string
- Text string
- Vcn string
- Speed byte
- Volume byte
- Rdn string
- Rcn string
- Reg byte
- Sync bool
- Queue bool
- Loop LoopInfo
- }
- type LoopInfo struct {
- Duration int
- Times int
- Gap int
- }
|