5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-11-15 01:30:29 +00:00
yggdrasil-go/src/config/i2p.go

9 lines
249 B
Go
Raw Normal View History

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