From 8fa382e37d0e46bf65c00b73eeb70ffaf5d62d48 Mon Sep 17 00:00:00 2001 From: sqshq Date: Wed, 15 May 2019 22:13:30 -0400 Subject: [PATCH] add licence flag --- config/options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/options.go b/config/options.go index 849dd52..3ef033d 100644 --- a/config/options.go +++ b/config/options.go @@ -3,5 +3,5 @@ package config type Options struct { ConfigFile string `short:"c" long:"config" required:"true" description:"path to YAML config file"` Variables []string `short:"v" long:"variable" required:"false" description:"specify name=value variable to use in script placeholder as $name. This flag takes precedence over the same name variables, specified in config yml" long-description:"one or more variables can be specified as flags, in order to replace repeated patterns in the scripts, which can be replaced with {$variable-name} placeholder" ` - Examples []string `short:"e" long:"example" required:"false" choice:"runchart" choice:"barchart" choice:"asciibox" choice:"textbox" choice:"gauge" choice:"sparkline" description:"add an example component to the specified config file" long-description:"one or more example component types can be added to the specified config file, in order to jump-start the configuration"` + License []string `short:"l" long:"license" required:"false" description:"provide license key. see www.sampler.dev for details"` }