33 lines
626 B
Go
33 lines
626 B
Go
package config
|
|
|
|
import (
|
|
"fmt"
|
|
"local/args"
|
|
)
|
|
|
|
var (
|
|
Port string
|
|
Public string
|
|
StoreAddr string
|
|
StoreNS string
|
|
)
|
|
|
|
func init() {
|
|
New()
|
|
}
|
|
|
|
func New() {
|
|
as := args.NewArgSet()
|
|
as.Append(args.INT, "p", "port to listen on", 52222)
|
|
as.Append(args.STRING, "d", "dir with public files", "./public")
|
|
as.Append(args.STRING, "s", "mongodb address", "localhost:27017")
|
|
as.Append(args.STRING, "ns", "mongodb database", "cheqbooq")
|
|
if err := as.Parse(); err != nil {
|
|
panic(err)
|
|
}
|
|
Port = fmt.Sprintf(":%d", as.GetInt("p"))
|
|
Public = as.GetString("d")
|
|
StoreAddr = as.GetString("s")
|
|
StoreNS = as.GetString("ns")
|
|
}
|