2016-03-19 22:18:26 +00:00
|
|
|
package data
|
|
|
|
|
2017-01-20 21:27:44 +00:00
|
|
|
// ResponseData struct
|
2016-03-19 22:18:26 +00:00
|
|
|
type ResponseData struct {
|
|
|
|
Neighbours *Neighbours `json:"neighbours"`
|
2019-01-24 01:56:13 +00:00
|
|
|
Nodeinfo *Nodeinfo `json:"nodeinfo"`
|
2016-03-19 22:18:26 +00:00
|
|
|
Statistics *Statistics `json:"statistics"`
|
|
|
|
}
|