3418e4f7f4
closes #1035
12 lines
264 B
Go
12 lines
264 B
Go
package result
|
|
|
|
type (
|
|
// Version model used for reporting server version
|
|
// info.
|
|
Version struct {
|
|
TCPPort uint16 `json:"tcp_port"`
|
|
WSPort uint16 `json:"ws_port,omitempty"`
|
|
Nonce uint32 `json:"nonce"`
|
|
UserAgent string `json:"user_agent"`
|
|
}
|
|
)
|