neoneo-go/pkg/rpc/response/result/version.go
2020-07-15 14:44:22 +03:00

12 lines
261 B
Go

package result
type (
// Version model used for reporting server version
// info.
Version struct {
TCPPort uint16 `json:"tcpport"`
WSPort uint16 `json:"wsport,omitempty"`
Nonce uint32 `json:"nonce"`
UserAgent string `json:"useragent"`
}
)