9 lines
201 B
Go
9 lines
201 B
Go
package config
|
|
|
|
type Node struct {
|
|
PeerId string `yaml:"peerId"`
|
|
Address string `yaml:"address"`
|
|
SigningKey string `yaml:"signingKey"`
|
|
EncryptionKey string `yaml:"encryptionKey"`
|
|
}
|