15 lines
265 B
Go
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"`
|
|
}
|