hvpn-node3/proto/node.go

16 lines
403 B
Go
Raw Permalink Normal View History

package proto
2024-03-24 16:13:26 +01:00
import "time"
type NodePublicInfo struct {
UUID string `json:"uuid"`
PublicKey string `json:"public_key"`
UDPPort int `json:"udp_port"`
Endpoint string `json:"endpoint"`
Country string `json:"country"`
CountryCode string `json:"country_code"`
2024-03-24 16:13:26 +01:00
Type string `json:"type"`
StartedAt time.Time `json:"started_at"`
Uptime time.Duration `json:"uptime_ns"`
}