10 lines
247 B
Go
10 lines
247 B
Go
package model
|
|
|
|
// MarathonInfoResp ...
|
|
type MarathonInfoResp struct {
|
|
Result []interface{} `json:"result"`
|
|
Status int `json:"status"`
|
|
CommandNum bool `json:"commandNum"`
|
|
TimeStamp int64 `json:"timeStamp"`
|
|
}
|