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