package cmd
import (
"github.com/spf13/cobra"
)
var generateCmd = &cobra.Command{
Use: "generate <type>",
Short: "Generate Typescript/JSON schema for parts of this application",
Args: cobra.ExactArgs(1),
}
func init() {
rootCmd.AddCommand(generateCmd)
}