diff options
author | xengineering <me@xengineering.eu> | 2023-02-09 22:18:22 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-02-09 22:18:22 +0100 |
commit | c36fef3fcf20f896910b8a96a0477eb522412ce8 (patch) | |
tree | 911faad5207e57527aeff35b4fe5454df0961784 /main.go | |
parent | f2b0733eefc56dcee210ecd1fbe6a9d5d159d6f0 (diff) | |
download | ceres-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.
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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) |