refactor: removed unnecessary cmd commands

This commit is contained in:
David Allen 2025-08-24 20:35:36 -06:00
parent ea4819e97a
commit 0de7beefd0
Signed by: towk
GPG key ID: 0430CDBE22619155
2 changed files with 0 additions and 25 deletions

View file

@ -1,11 +0,0 @@
package cmd
import "github.com/spf13/cobra"
var pluginCmd = &cobra.Command{}
var pluginCompileCmd = &cobra.Command{}
func init() {
rootCmd.AddCommand(pluginCmd, pluginCompileCmd)
}

View file

@ -1,14 +0,0 @@
package cmd
import "github.com/spf13/cobra"
var profilesCmd = &cobra.Command{
Use: "profiles",
Run: func(cmd *cobra.Command, args []string) {
},
}
func init() {
rootCmd.AddCommand(profilesCmd)
}