summaryrefslogtreecommitdiff
path: root/internal/askcli/dispatch.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/askcli/dispatch.go')
-rw-r--r--internal/askcli/dispatch.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/askcli/dispatch.go b/internal/askcli/dispatch.go
index 19e9b58..bc4715c 100644
--- a/internal/askcli/dispatch.go
+++ b/internal/askcli/dispatch.go
@@ -76,6 +76,8 @@ func (d Dispatcher) Dispatch(ctx context.Context, args []string, stdin io.Reader
return d.handleDelete(ctx, args, stdin, stdout, stderr)
case "help":
return d.help(stdout)
+ case "complete-uuids":
+ return d.handleCompleteUUIDs(ctx, stdout, stderr)
default:
return d.unknownCommand(stderr, subcommand)
}