x/cmd/generate.go

15 lines
192 B
Go
Raw Normal View History

2020-10-13 18:45:57 +00:00
package cmd
import (
"github.com/spf13/cobra"
)
func init() {
rootCmd.AddCommand(generateCommand)
}
var generateCommand = &cobra.Command{
Use: "generate",
Short: "Generate things",
}