From 7e88cd4d96a7413b023699937b3e00836d46920d Mon Sep 17 00:00:00 2001 From: liangzy Date: Thu, 18 Jul 2024 17:21:37 +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 06db0ba..a3dd973 100644 --- a/main.go +++ b/main.go @@ -1,4 +1,4 @@ -package hertz_scaffold +package main import "fmt"