mirror of
https://github.com/go-i2p/go-i2p.git
synced 2025-07-04 13:32:52 -04:00
14 lines
196 B
Go
14 lines
196 B
Go
![]() |
package config
|
||
|
|
||
|
// router.config options
|
||
|
type RouterConfig struct {
|
||
|
NetDbDir string
|
||
|
|
||
|
Bootstrap BootstrapConfig
|
||
|
}
|
||
|
|
||
|
// defaults for router
|
||
|
var Router = &RouterConfig{
|
||
|
NetDbDir: "./netDb",
|
||
|
}
|