diff options
author | xengineering <me@xengineering.eu> | 2024-05-01 13:58:54 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-05-01 13:58:54 +0200 |
commit | 1e2a3377e43786e25dc03b8612513d47f8dfb3c6 (patch) | |
tree | b1dbe786260a9cd47e9a9af3549e95df27184179 /flags.go | |
parent | 390642f9bbc12f0b435f343fc35f4a47c5ec7680 (diff) | |
download | ceres-1e2a3377e43786e25dc03b8612513d47f8dfb3c6.tar ceres-1e2a3377e43786e25dc03b8612513d47f8dfb3c6.tar.zst ceres-1e2a3377e43786e25dc03b8612513d47f8dfb3c6.zip |
Add --config flag
This re-enables config file support.
Diffstat (limited to 'flags.go')
-rw-r--r-- | flags.go | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -7,17 +7,22 @@ import ( const help = `Ceres - Recipe server for local networks -Usage: ceres [-h | --help] [-v | --version] +Usage: ceres [-h | --help] [-v | --version] [-c | --config] -h, --help show this help page and exit -v, --version print version information + -c, --config file path to configuration file ` var printVersion bool func init() { flag.BoolVar(&printVersion, "version", false, "print version information") - flag.BoolVar(&printVersion, "v", false, "print version information") + flag.BoolVar(&printVersion, "v", false, "print version information") + + flag.StringVar(&config.Path, "config", "", "file path to configuration file") + flag.StringVar(&config.Path, "c", "", "file path to configuration file") + flag.Usage = func() { fmt.Fprintf(flag.CommandLine.Output(), help) } |