This commit is contained in:
genofire 2020-01-07 16:40:57 +01:00
parent a83e8eb510
commit 3559c53596
No known key found for this signature in database
GPG Key ID: 9D7D3C6BFF600C6A
1 changed files with 3 additions and 3 deletions

View File

@ -2,8 +2,8 @@ package data
// ResponseData struct // ResponseData struct
type ResponseData struct { type ResponseData struct {
Nodeinfo *Nodeinfo `json:"nodeinfo" toml:"nodeinfo"` Nodeinfo *Nodeinfo `json:"nodeinfo" toml:"nodeinfo"`
Statistics *Statistics `json:"statistics" toml:"statistics"` Statistics *Statistics `json:"statistics" toml:"statistics"`
Neighbours *Neighbours `json:"neighbours" toml:"neighbours"` Neighbours *Neighbours `json:"neighbours" toml:"neighbours"`
CustomFields map[string]interface{} `json:"-"` CustomFields map[string]interface{} `json:"-"`
} }