9 lines
196 B
Go
9 lines
196 B
Go
package data
|
|
|
|
// ResponseData struct
|
|
type ResponseData struct {
|
|
Neighbours *Neighbours `json:"neighbours"`
|
|
Nodeinfo *Nodeinfo `json:"nodeinfo"`
|
|
Statistics *Statistics `json:"statistics"`
|
|
}
|