9 lines
187 B
Go
9 lines
187 B
Go
package challenge
|
|
|
|
type InfoResp struct {
|
|
Result []any `json:"result"`
|
|
Status int `json:"status"`
|
|
CommandNum bool `json:"commandNum"`
|
|
TimeStamp int64 `json:"timeStamp"`
|
|
}
|