2024-03-15 21:48:22 +01:00
|
|
|
package proto
|
|
|
|
|
2024-03-24 16:13:26 +01:00
|
|
|
import "time"
|
|
|
|
|
2024-03-15 21:48:22 +01:00
|
|
|
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"`
|
2024-03-15 21:48:22 +01:00
|
|
|
}
|