feat: Replace cli to cobra (#1855)
* Replace cli * Replace cli * Replace cli * Format code * Add compare case * Add compare case * Add compare case * Support go style flag * Support go style flag * Add test case
This commit is contained in:
55
tools/goctl/tpl/cmd.go
Normal file
55
tools/goctl/tpl/cmd.go
Normal file
@@ -0,0 +1,55 @@
|
||||
package tpl
|
||||
|
||||
import (
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
var (
|
||||
varStringHome string
|
||||
varStringCategory string
|
||||
varStringName string
|
||||
// Cmd describes a template command.
|
||||
Cmd = &cobra.Command{
|
||||
Use: "template",
|
||||
Short: "Template operation",
|
||||
}
|
||||
|
||||
initCmd = &cobra.Command{
|
||||
Use: "init",
|
||||
Short: "Initialize the all templates(force update)",
|
||||
RunE: genTemplates,
|
||||
}
|
||||
|
||||
cleanCmd = &cobra.Command{
|
||||
Use: "clean",
|
||||
Short: "Clean the all cache templates",
|
||||
RunE: cleanTemplates,
|
||||
}
|
||||
|
||||
updateCmd = &cobra.Command{
|
||||
Use: "update",
|
||||
Short: "Update template of the target category to the latest",
|
||||
RunE: updateTemplates,
|
||||
}
|
||||
|
||||
revertCmd = &cobra.Command{
|
||||
Use: "revert",
|
||||
Short: "Revert the target template to the latest",
|
||||
RunE: revertTemplates,
|
||||
}
|
||||
)
|
||||
|
||||
func init() {
|
||||
initCmd.Flags().StringVar(&varStringHome, "home", "", "The goctl home path of the template")
|
||||
cleanCmd.Flags().StringVar(&varStringHome, "home", "", "The goctl home path of the template")
|
||||
updateCmd.Flags().StringVar(&varStringHome, "home", "", "The goctl home path of the template")
|
||||
updateCmd.Flags().StringVarP(&varStringCategory, "category", "c", "", "The category of template, enum [api,rpc,model,docker,kube]")
|
||||
revertCmd.Flags().StringVar(&varStringHome, "home", "", "The goctl home path of the template")
|
||||
revertCmd.Flags().StringVarP(&varStringCategory, "category", "c", "", "The category of template, enum [api,rpc,model,docker,kube]")
|
||||
revertCmd.Flags().StringVarP(&varStringName, "name", "n", "", "The target file name of template")
|
||||
|
||||
Cmd.AddCommand(cleanCmd)
|
||||
Cmd.AddCommand(initCmd)
|
||||
Cmd.AddCommand(revertCmd)
|
||||
Cmd.AddCommand(updateCmd)
|
||||
}
|
||||
Reference in New Issue
Block a user