From 5c51ce0f202401222e7c8ff14575e07244d38407 Mon Sep 17 00:00:00 2001 From: liangzy Date: Thu, 18 Jul 2024 17:36:07 +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 03f26d6..3b67e84 100644 --- a/main.go +++ b/main.go @@ -8,7 +8,7 @@ var rootCmd = &cobra.Command{ Short: "Hello, World!", Long: `Hello, World!`, Run: func(cmd *cobra.Command, args []string) { - fmt.Println("Hello, World!") + fmt.Println("Hello, World! corbra") }, }