@@ -12,20 +12,32 @@ import (
12
12
"github.com/tschaub/stash/internal/proxy"
13
13
)
14
14
15
+ var (
16
+ // set by goreleaser
17
+ version = "development"
18
+ )
19
+
15
20
func main () {
16
- ctx := kong .Parse (& Stash {}, kong .UsageOnError ())
21
+ ctx := kong .Parse (
22
+ & Stash {},
23
+ kong .UsageOnError (),
24
+ kong.Vars {
25
+ "version" : version ,
26
+ },
27
+ )
17
28
err := ctx .Run ()
18
29
ctx .FatalIfErrorf (err )
19
30
}
20
31
21
32
type Stash struct {
22
- Port int `help:"Listen on this port." default:"9999" env:"STASH_PORT"`
23
- Dir string `help:"Path to cache directory" type:"path" default:".stash" env:"STASH_DIR"`
24
- Hosts []string `help:"Cache responses from these hosts" env:"STASH_HOSTS"`
25
- CertFile string `help:"Path to CA certificate file" type:"existingfile" required:"" env:"STASH_CERT_FILE"`
26
- KeyFile string `help:"Path to CA private key file" type:"existingfile" required:"" env:"STASH_KEY_FILE"`
27
- LogLevel string `help:"Log level" enum:"debug,info,warn,error" default:"info" env:"STASH_LOG_LEVEL"`
28
- LogFormat string `help:"Log format" enum:"text,json" default:"text" env:"STASH_LOG_FORMAT"`
33
+ Port int `help:"Listen on this port." default:"9999" env:"STASH_PORT"`
34
+ Dir string `help:"Path to cache directory" type:"path" default:".stash" env:"STASH_DIR"`
35
+ Hosts []string `help:"Cache responses from these hosts" env:"STASH_HOSTS"`
36
+ CertFile string `help:"Path to CA certificate file" type:"existingfile" required:"" env:"STASH_CERT_FILE"`
37
+ KeyFile string `help:"Path to CA private key file" type:"existingfile" required:"" env:"STASH_KEY_FILE"`
38
+ LogLevel string `help:"Log level" enum:"debug,info,warn,error" default:"info" env:"STASH_LOG_LEVEL"`
39
+ LogFormat string `help:"Log format" enum:"text,json" default:"text" env:"STASH_LOG_FORMAT"`
40
+ Version kong.VersionFlag `help:"Print the version and exit."`
29
41
}
30
42
31
43
func (s * Stash ) Run () error {
0 commit comments