package response type StatusResp struct { Code int64 `json:"code"` Data struct { Playing bool `json:"playing"` Speech bool `json:"speech"` Task struct { Contents string `json:"contents"` Pid int64 `json:"pid"` Type string `json:"type"` } `json:"task"` } `json:"data"` Message string `json:"message"` } type PingResp struct { Code int `json:"code"` Message string `json:"message"` }