mirror of
https://github.com/go-i2p/go-i2p.git
synced 2025-07-05 06:05:16 -04:00
16 lines
332 B
Go
16 lines
332 B
Go
package config
|
|
|
|
// router.config options
|
|
type RouterConfig struct {
|
|
// netdb configuration
|
|
NetDb *NetDbConfig
|
|
// configuration for bootstrapping into the network
|
|
Bootstrap *BootstrapConfig
|
|
}
|
|
|
|
// defaults for router
|
|
var DefaultRouterConfig = &RouterConfig{
|
|
NetDb: &DefaultNetDbConfig,
|
|
Bootstrap: &DefaultBootstrapConfig,
|
|
}
|