mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-11-14 22:00:28 +00:00
9 lines
249 B
Go
9 lines
249 B
Go
package config
|
|
|
|
// I2PConfig is the configuration structure for i2p related configuration
|
|
type I2PConfig struct {
|
|
Keyfile string // private key file or empty string for ephemeral keys
|
|
Addr string // address of i2p api connector
|
|
Enabled bool
|
|
}
|