makeshift/cmd/profiles.go

14 lines
203 B
Go

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