Files
pg/peermap/exporter/exporter.go
T
2024-03-27 21:46:15 +08:00

13 lines
215 B
Go

package exporter
type NetworkHead struct {
ID string `json:"n"`
PeersCount int `json:"c"`
CreateTime string `json:"t"`
}
type Network struct {
ID string `json:"n"`
Peers []string `json:"p"`
}