summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-05-12 00:12:55 +0200
committerxengineering <me@xengineering.eu>2024-05-12 00:12:55 +0200
commit642fed1cbf5160c89a93deab810bd44fb49d2a4a (patch)
treea676ee90aef8f67640af6ce49792782de33b3165 /main.go
parent938ab103727688b73f2d7b3ef4d9e1b1c85c6628 (diff)
downloadceres-642fed1cbf5160c89a93deab810bd44fb49d2a4a.tar
ceres-642fed1cbf5160c89a93deab810bd44fb49d2a4a.tar.zst
ceres-642fed1cbf5160c89a93deab810bd44fb49d2a4a.zip
Move config path from config to flags struct
This is metadata about the config and thus does not belong to the config itself. Moving it to the struct holding flag values is straight forward since it is defined by flags.
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.go b/main.go
index 38fde52..b77c803 100644
--- a/main.go
+++ b/main.go
@@ -24,8 +24,8 @@ func main() {
defer log.Println("Ceres recipe server stopped")
log.Printf("Version: %s", version)
- if config.Path != "" {
- config.Read()
+ if flags.config != "" {
+ config.Read(flags.config)
}
storage := model.NewStorage(config.StorageFilePath)