@@ -6,16 +6,12 @@ import (
66 "github.com/spf13/cobra"
77)
88
9- // RootCmd represents the base command when called without any subcommands
9+ // rootCmd represents the base command when called without any subcommands
1010var RootCmd = & cobra.Command {
11- Use : "bootstrapper" ,
12- Short : "A brief description of your application" ,
13- Long : `A longer description that spans multiple lines and likely contains
14- examples and usage of using your application. For example:
15-
16- Cobra is a CLI library for Go that empowers applications.
17- This application is a tool to generate the needed files
18- to quickly create a Cobra application.` ,
11+ Use : "openmcp-bootstrapper" ,
12+ Short : "The openMCP bootstrapper CLI" ,
13+ Long : `The openMCP bootstrapper CLI is a command-line interface
14+ for bootstrapping and updating openMCP landscapes.` ,
1915 // Uncomment the following line if your bare application
2016 // has an action associated with it:
2117 // Run: func(cmd *cobra.Command, args []string) { },
@@ -39,5 +35,5 @@ func init() {
3935
4036 // Cobra also supports local flags, which will only run
4137 // when this action is called directly.
42- RootCmd .Flags ().BoolP ("toggle" , "t" , false , "Help message for toggle" )
38+ // RootCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
4339}
0 commit comments