fix: template

This commit is contained in:
Rogee
2024-12-21 00:25:12 +08:00
parent 58450dd63d
commit 6f04023a42
7 changed files with 26 additions and 20 deletions

View File

@@ -19,9 +19,10 @@ import (
func CommandGenModel(root *cobra.Command) {
cmd := &cobra.Command{
Use: "model",
Short: "Generate jet models",
RunE: commandGenModelE,
Use: "model",
Aliases: []string{"m"},
Short: "Generate jet models",
RunE: commandGenModelE,
}
root.AddCommand(cmd)