mirror of
https://github.com/go-i2p/go-i2p.git
synced 2025-07-04 05:26:51 -04:00
14 lines
191 B
Go
14 lines
191 B
Go
package config
|
|
|
|
// router.config options
|
|
type RouterConfig struct {
|
|
NetDbDir string
|
|
|
|
Bootstrap BootstrapConfig
|
|
}
|
|
|
|
// defaults for router
|
|
var Router = &RouterConfig{
|
|
NetDbDir: "./netDb",
|
|
}
|