diff --git a/cmd/plugin.go b/cmd/plugin.go deleted file mode 100644 index bd9c7bd..0000000 --- a/cmd/plugin.go +++ /dev/null @@ -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) -} diff --git a/cmd/profiles.go b/cmd/profiles.go deleted file mode 100644 index 7c4294f..0000000 --- a/cmd/profiles.go +++ /dev/null @@ -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) -}