Added basic profile handling CLI

This commit is contained in:
Gregory Kurtzer
2020-11-27 16:37:56 -08:00
parent 38ce925639
commit 41dd2e3a59
10 changed files with 445 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package delete
import "github.com/spf13/cobra"
var (
baseCmd = &cobra.Command{
Use: "delete",
Short: "Delete profiles",
Long: "Profile configurations ",
RunE: CobraRunE,
}
)
func init() {
}
// GetRootCommand returns the root cobra.Command for the application.
func GetCommand() *cobra.Command {
return baseCmd
}