mirror of
https://github.com/sigcn/pg.git
synced 2026-04-23 00:37:30 +08:00
13 lines
215 B
Go
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"`
|
|
}
|