diff options
| author | Jeff Carr <[email protected]> | 2024-10-12 10:59:11 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-10-12 10:59:11 -0500 |
| commit | d08d9f99bee4d4e93a8beda780d8e9f6099e32cb (patch) | |
| tree | 78540be4d3b371569f59ee863621b03786a479c5 /argv.go | |
| parent | 0751e80559cbb34bc23639328938780c64063c92 (diff) | |
ugly but limping along progress
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 { |
