diff options
author | xengineering <me@xengineering.eu> | 2024-05-12 00:12:55 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-05-12 00:12:55 +0200 |
commit | 642fed1cbf5160c89a93deab810bd44fb49d2a4a (patch) | |
tree | a676ee90aef8f67640af6ce49792782de33b3165 /main.go | |
parent | 938ab103727688b73f2d7b3ef4d9e1b1c85c6628 (diff) | |
download | ceres-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.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |