mirror of
https://github.com/go-i2p/go-i2p.git
synced 2025-07-04 21:55:18 -04:00
17 lines
272 B
Go
17 lines
272 B
Go
package config
|
|
|
|
import (
|
|
"path/filepath"
|
|
)
|
|
|
|
// local network database configuration
|
|
type NetDbConfig struct {
|
|
// path to network database directory
|
|
Path string
|
|
}
|
|
|
|
// default settings for netdb
|
|
var DefaultNetDbConfig = NetDbConfig{
|
|
Path: filepath.Join(".", "netDb"),
|
|
}
|