1
0
Fork 0
burlesque/config.go

30 lines
541 B
Go
Raw Normal View History

2014-07-10 12:19:39 +00:00
package main
import (
"flag"
"fmt"
)
type (
Config struct {
Storage string
Env string
Port int
}
)
var (
cfg = Config{}
)
func SetupConfig() {
cfg.Storage = *flag.String("storage", "-", "Kyoto Cabinet storage path (e.g. storage.kch#zcomp=gz#capsiz=524288000)")
cfg.Env = *flag.String("environment", "development", "Process environment: development or production")
cfg.Port = *flag.Int("port", 4401, "HTTP port to listen")
flag.Parse()
}
func (c Config) PortString() string {
return fmt.Sprintf(":%d", cfg.Port)
}