mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-08 05:57:03 +09:00
9 lines
274 B
Go
9 lines
274 B
Go
package config
|
|
|
|
type Node struct {
|
|
PeerId string `yaml:"peerId"`
|
|
Address string `yaml:"address"`
|
|
SigningKey string `yaml:"signingKey,omitempty"`
|
|
EncryptionKey string `yaml:"encryptionKey,omitempty"`
|
|
IsConsensus bool `yaml:"isConsensus,omitempty"`
|
|
}
|