any-sync/config/peer.go
Sergey Cherepanov ebfdbdd508
net utils wip
2022-08-05 12:07:34 +03:00

15 lines
265 B
Go

package config
type PeerList struct {
MyId struct {
PeerId string `yaml:"peerId"`
PrivKey string `yaml:"privKey"`
} `yaml:"myId"`
Remote []PeerRemote `yaml:"remote"`
}
type PeerRemote struct {
PeerId string `yaml:"peerId"`
Addr string `yaml:"addr"`
}