feat: added skeleton implementation for run and profiles cmd
This commit is contained in:
parent
7e9e186138
commit
920703fc0e
2 changed files with 10 additions and 1 deletions
|
|
@ -8,3 +8,7 @@ var profilesCmd = &cobra.Command{
|
|||
|
||||
},
|
||||
}
|
||||
|
||||
func init() {
|
||||
rootCmd.AddCommand(profilesCmd)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,8 +3,13 @@ package cmd
|
|||
import "github.com/spf13/cobra"
|
||||
|
||||
var runCmd = &cobra.Command{
|
||||
Use: "run",
|
||||
Use: "run",
|
||||
Short: "Run the configurator locally",
|
||||
Run: func(cmd *cobra.Command, args []string) {
|
||||
|
||||
},
|
||||
}
|
||||
|
||||
func init() {
|
||||
rootCmd.AddCommand(runCmd)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue