feat: added skeleton implementation for run and profiles cmd

This commit is contained in:
David Allen 2025-08-18 11:02:33 -06:00
parent 7e9e186138
commit 920703fc0e
Signed by: towk
GPG key ID: 0430CDBE22619155
2 changed files with 10 additions and 1 deletions

View file

@ -8,3 +8,7 @@ var profilesCmd = &cobra.Command{
},
}
func init() {
rootCmd.AddCommand(profilesCmd)
}

View file

@ -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)
}