From 1f05b680f8ff0dc9eb5db37843d0267489ff0391 Mon Sep 17 00:00:00 2001 From: liangzy Date: Thu, 18 Jul 2024 17:33:30 +0800 Subject: [PATCH] feat(start): initialize project with Go scaffold - Add basic Go application structure.- Include `.gitignore` file with common Go ignores. - Create `main.go` with initial "Hello, World!" implementation. --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 23b54d6..03f26d6 100644 --- a/main.go +++ b/main.go @@ -13,5 +13,5 @@ var rootCmd = &cobra.Command{ } func main() { - fmt.Println("Hello, World!") + rootCmd.Execute() }