add untracked file

This commit is contained in:
Jeff Becker
2016-08-17 09:20:15 -04:00
parent f1094c0ffe
commit 13b1639b58

16
lib/config/netdb.go Normal file
View File

@@ -0,0 +1,16 @@
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"),
}