gouick/cmd/generateHelp.go
2022-07-15 11:49:53 +00:00

26 lines
377 B
Go

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