hertz_scaffold/cmd/update.go

16 lines
251 B
Go
Raw Normal View History

2024-08-08 21:29:58 +08:00
package cmd
import (
"fmt"
"github.com/spf13/cobra"
)
var updateCmd = &cobra.Command{
Use: "update",
Short: "更新项目",
Long: `Update the current project`,
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("还没做")
},
}