add base files

This commit is contained in:
Jeff Becker
2016-01-28 10:16:26 -05:00
parent 581742fcc4
commit 67d49585af
28 changed files with 634 additions and 0 deletions

13
lib/config/router.go Normal file
View File

@ -0,0 +1,13 @@
package config
// router.config options
type RouterConfig struct {
NetDbDir string
Bootstrap BootstrapConfig
}
// defaults for router
var Router = &RouterConfig{
NetDbDir: "./netDb",
}