mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-04-29 06:35:07 +03:00
8 lines
249 B
Go
8 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
|
|
}
|