mirror of
https://github.com/fumiama/WireGold.git
synced 2026-06-09 18:40:36 +08:00
10 lines
134 B
Go
10 lines
134 B
Go
package link
|
|
|
|
type Identity struct {
|
|
PubicKey [32]byte
|
|
EndPoint string
|
|
KeepAlive int64
|
|
}
|
|
|
|
var peers = make(map[string]*Identity)
|