cmd: add shell completion and man pages generators

This commit is contained in:
Nicola Murino
2020-07-08 23:21:33 +02:00
parent 0ea2ca3141
commit 96cbce52f9
6 changed files with 138 additions and 1 deletions

12
cmd/gen.go Normal file
View File

@@ -0,0 +1,12 @@
package cmd
import "github.com/spf13/cobra"
var genCmd = &cobra.Command{
Use: "gen",
Short: "A collection of useful generators",
}
func init() {
rootCmd.AddCommand(genCmd)
}