Files
go-common/app/admin/main/apm/model/discovery/discovery.go
2019-04-22 18:49:16 +08:00

14 lines
224 B
Go

package discovery
// Status node
type Status struct {
Status int `json:"status"`
Others interface{} `json:"others"`
}
// Addr addr
type Addr struct {
Addr string `json:"addr"`
Status int `json:"status"`
}