chore: group deploy and service management commands in uc --help

This commit is contained in:
Pasha Sviderski
2025-12-12 18:52:08 +10:00
parent 5707c37b63
commit f215fae6c7
14 changed files with 46 additions and 27 deletions
+2 -1
View File
@@ -17,7 +17,7 @@ type inspectOptions struct {
service string
}
func NewInspectCommand() *cobra.Command {
func NewInspectCommand(groupID string) *cobra.Command {
opts := inspectOptions{}
cmd := &cobra.Command{
Use: "inspect SERVICE",
@@ -28,6 +28,7 @@ func NewInspectCommand() *cobra.Command {
opts.service = args[0]
return inspect(cmd.Context(), uncli, opts)
},
GroupID: groupID,
}
return cmd
}