ipcast.go 427 B

1234567891011121314151617181920
  1. package response
  2. type StatusResp struct {
  3. Code int64 `json:"code"`
  4. Data struct {
  5. Playing bool `json:"playing"`
  6. Speech bool `json:"speech"`
  7. Task struct {
  8. Contents string `json:"contents"`
  9. Pid int64 `json:"pid"`
  10. Type string `json:"type"`
  11. } `json:"task"`
  12. } `json:"data"`
  13. Message string `json:"message"`
  14. }
  15. type PingResp struct {
  16. Code int `json:"code"`
  17. Message string `json:"message"`
  18. }