Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit edfd0bd

Browse files
Add an experimentalCLI annotation to the root app command.
Signed-off-by: Silvin Lubecki <[email protected]>
1 parent fb5d7a5 commit edfd0bd

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

internal/commands/root.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ import (
1313
// NewRootCmd returns the base root command.
1414
func NewRootCmd(use string, dockerCli command.Cli) *cobra.Command {
1515
cmd := &cobra.Command{
16-
Short: "Docker Application",
17-
Long: `A tool to build and manage Docker Applications.`,
18-
Use: use,
16+
Short: "Docker Application",
17+
Long: `A tool to build and manage Docker Applications.`,
18+
Use: use,
19+
Annotations: map[string]string{"experimentalCLI": "true"},
1920
}
2021
addCommands(cmd, dockerCli)
2122
return cmd

0 commit comments

Comments
 (0)