mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-24 09:30:36 +00:00
69e1ad512f
`response` is to be populated soon.
11 lines
213 B
Go
11 lines
213 B
Go
package result
|
|
|
|
type (
|
|
// Version model used for reporting server version
|
|
// info.
|
|
Version struct {
|
|
Port uint16 `json:"port"`
|
|
Nonce uint32 `json:"nonce"`
|
|
UserAgent string `json:"useragent"`
|
|
}
|
|
)
|