diff options
| author | Jeff Carr <[email protected]> | 2025-04-12 11:27:55 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-04-12 11:27:55 -0500 |
| commit | 69ee3b95d0a2f5a3079e512a9f3315026912fcde (patch) | |
| tree | 89c816e422e08cfbc4e2113eeba9da5954aed070 /argv.go | |
| parent | 16558e1b72762e47ca9664c74922e060d571cea4 (diff) | |
droplet list works
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -28,8 +28,9 @@ type EmptyCmd struct { type testCmd string type ListCmd struct { - Droplets *EmptyCmd `arg:"subcommand:droplets" help:"list droplets"` - Hypervisors *EmptyCmd `arg:"subcommand:hypervisors" help:"list hypervisors"` + Droplets *EmptyCmd `arg:"subcommand:droplets" help:"list droplets"` + Hypervisors *EmptyCmd `arg:"subcommand:hypervisors" help:"list hypervisors"` + On bool `arg:"--on" help:"only show things that are on"` } func (a args) Description() string { |
