hvpn-node3/proto/node.go

13 lines
289 B
Go
Raw Normal View History

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