From ced1e404bd762abb114321334a3812805dee7059 Mon Sep 17 00:00:00 2001 From: xengineering Date: Sat, 11 Feb 2023 18:19:30 +0100 Subject: Apply go fmt *.go This auto-applies the recommended Go codestyle. --- config.go | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) (limited to 'config.go') diff --git a/config.go b/config.go index 645e347..e48016a 100644 --- a/config.go +++ b/config.go @@ -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) } -- cgit v1.2.3-70-g09d2