hertz_scaffold/main.go

18 lines
278 B
Go
Raw Normal View History

package main
import "fmt"
import "github.com/spf13/cobra"
var rootCmd = &cobra.Command{
Use: "hello",
Short: "Hello, World!",
Long: `Hello, World!`,
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("Hello, World!")
},
}
func main() {
rootCmd.Execute()
}