summaryrefslogtreecommitdiff
path: root/cmd/blubber/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/blubber/main.go')
-rw-r--r--cmd/blubber/main.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/blubber/main.go b/cmd/blubber/main.go
index 53009ea..9160e06 100644
--- a/cmd/blubber/main.go
+++ b/cmd/blubber/main.go
@@ -17,9 +17,9 @@ import (
const parameters = "config.yaml variant"
var (
- showHelp *bool = getopt.BoolLong("help", 'h', "show help/usage")
- showVersion *bool = getopt.BoolLong("version", 'v', "show version information")
- policyURI *string = getopt.StringLong("policy", 'p', "", "policy file URI", "uri")
+ showHelp = getopt.BoolLong("help", 'h', "show help/usage")
+ showVersion = getopt.BoolLong("version", 'v', "show version information")
+ policyURI = getopt.StringLong("policy", 'p', "", "policy file URI", "uri")
)
func main() {