8 lines
165 B
Go
8 lines
165 B
Go
package config
|
|
|
|
type Account struct {
|
|
PeerId string `yaml:"peerId"`
|
|
SigningKey string `yaml:"signingKey"`
|
|
EncryptionKey string `yaml:"encryptionKey"`
|
|
}
|