hvpn-node3/proto/node.go
2024-03-24 18:13:26 +03:00

13 lines
289 B
Go

package proto
import "time"
type NodePublicInfo struct {
PublicKey string `json:"public_key"`
UDPPort int `json:"udp_port"`
Endpoint string `json:"endpoint"`
Type string `json:"type"`
StartedAt time.Time `json:"started_at"`
Uptime time.Duration `json:"uptime"`
}