1
0
mirror of https://github.com/fumiama/WireGold.git synced 2026-06-09 18:40:36 +08:00
Files
WireGold/gold/link/identify.go
fumiama 151da51230 init
2021-10-24 00:52:13 +08:00

10 lines
134 B
Go

package link
type Identity struct {
PubicKey [32]byte
EndPoint string
KeepAlive int64
}
var peers = make(map[string]*Identity)