diff options
Diffstat (limited to 'config.go')
-rw-r--r-- | config.go | 27 |
1 files changed, 13 insertions, 14 deletions
@@ -1,33 +1,32 @@ - package main import ( - "log" + "encoding/json" "flag" - "os" "io/ioutil" - "encoding/json" + "log" + "os" "path/filepath" ) type RuntimeConfig struct { - Path string - Http HttpConfig `json:"http"` + Path string + Http HttpConfig `json:"http"` Database DatabaseConfig `json:"database"` } type HttpConfig struct { - Host string `json:"bind_host"` - Port string `json:"bind_port"` - Static string `json:"static"` + Host string `json:"bind_host"` + Port string `json:"bind_port"` + Static string `json:"static"` Templates string `json:"templates"` - Storage string `json:"storage"` + Storage string `json:"storage"` } type DatabaseConfig struct { - Socket string `json:"socket"` - User string `json:"user"` - Database string `json:"database"` + Socket string `json:"socket"` + User string `json:"user"` + Database string `json:"database"` Migrations string `json:"migrations"` } @@ -59,7 +58,7 @@ func GetRuntimeConfig() RuntimeConfig { log.Fatalf("Could not parse configuration file %s", config.Path) } - abs,err := filepath.Abs(config.Path) + abs, err := filepath.Abs(config.Path) if err != nil { log.Fatalf("Could not translate %s to absolute path.", config.Path) } |