discovery.go 224 B

12345678910111213
  1. package discovery
  2. // Status node
  3. type Status struct {
  4. Status int `json:"status"`
  5. Others interface{} `json:"others"`
  6. }
  7. // Addr addr
  8. type Addr struct {
  9. Addr string `json:"addr"`
  10. Status int `json:"status"`
  11. }