summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/argv.go b/argv.go
index 7221523..4bed667 100644
--- a/argv.go
+++ b/argv.go
@@ -9,9 +9,9 @@ package main
var argv args
type args struct {
- Hosts []string `arg:"--hosts" help:"hosts to connect to"`
- Uptime bool `arg:"--uptime" default:"true" help:"allow uptime checks for things like Kuma"`
- Port int `arg:"--port" default:"8080" help:"specify a different default port"`
+ Hosts []string `arg:"--hosts" help:"hosts to connect to"`
+ Uptime bool `arg:"--uptime" default:"true" help:"allow uptime checks for things like Kuma"`
+ Port int `arg:"--port" default:"8080" help:"specify a different default port"`
}
func (a args) Description() string {