gouick/cmd/generateHelp.go

26 lines
377 B
Go
Raw Normal View History

/*
Copyright © 2022 NAME HERE <EMAIL ADDRESS>
*/
package cmd
import (
"github.com/spf13/cobra"
)
// helpCmd represents the help command
var helpCmd = &cobra.Command{
Use: "help",
Short: "Show that help",
Run: func(cmd *cobra.Command, args []string) {
err := generateCmd.Help()
if err != nil {
return
}
},
}
func init() {
generateCmd.AddCommand(helpCmd)
}