yggdrasil-go/src/yggdrasil/config/i2p.go

9 lines
249 B
Go
Raw Normal View History

2018-04-19 17:30:40 +03:00
package config
2018-04-25 17:09:09 +03:00
// I2PConfig is the configuration structure for i2p related configuration
2018-04-19 17:30:40 +03:00
type I2PConfig struct {
2018-04-25 17:09:09 +03:00
Keyfile string // private key file or empty string for ephemeral keys
Addr string // address of i2p api connector
2018-04-19 17:30:40 +03:00
Enabled bool
}