8 lines
173 B
Go
8 lines
173 B
Go
|
package data
|
||
|
|
||
|
type ResponseData struct {
|
||
|
Neighbours *Neighbours `json:"neighbours"`
|
||
|
NodeInfo *NodeInfo `json:"nodeinfo"`
|
||
|
Statistics *Statistics `json:"statistics"`
|
||
|
}
|