summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-02-09 22:18:22 +0100
committerxengineering <me@xengineering.eu>2023-02-09 22:18:22 +0100
commitc36fef3fcf20f896910b8a96a0477eb522412ce8 (patch)
tree911faad5207e57527aeff35b4fe5454df0961784
parentf2b0733eefc56dcee210ecd1fbe6a9d5d159d6f0 (diff)
downloadceres-c36fef3fcf20f896910b8a96a0477eb522412ce8.tar
ceres-c36fef3fcf20f896910b8a96a0477eb522412ce8.tar.zst
ceres-c36fef3fcf20f896910b8a96a0477eb522412ce8.zip
Make config a global struct
Passing the config completly or just partial around via function arguments creates a lot of noice and does not have benefits. The only downside is that it is possible to write the config after initialization but it is realistic that this can be avoided.
-rw-r--r--main.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/main.go b/main.go
index 582c0cc..11cbf7c 100644
--- a/main.go
+++ b/main.go
@@ -5,10 +5,12 @@ import (
"log"
)
+var config RuntimeConfig
+
func main() {
// read all sources of runtime configuration (e.g. CLI flags and config file)
- config := GetRuntimeConfig()
+ config = GetRuntimeConfig()
// print start message
log.Printf("Starting ceres with config file '%s'\n", config.Path)