blob: b745a603331a40c8f27589a32c6e28fef5842f54 (
plain) (
tree)
|
|
package config
import "os"
type Config struct {
DBPath string
Listen string
}
func New() *Config {
cfg := new(Config)
cfg.DBPath = os.Getenv("DB_PATH")
cfg.Listen = os.Getenv("LISTEN")
return cfg
}
|