2016-08-17 09:20:15 -04:00
|
|
|
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{
|
2024-10-03 22:09:16 -04:00
|
|
|
Path: filepath.Join(defaultConfig(), "netDb"),
|
2016-08-17 09:20:15 -04:00
|
|
|
}
|