From 98344ffb3acbb0f68c6dbab67bbc445394407aaa Mon Sep 17 00:00:00 2001 From: liangzy Date: Thu, 18 Jul 2024 17:35:34 +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. --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index d65caaa..a548dcd 100644 --- a/.gitignore +++ b/.gitignore @@ -28,4 +28,4 @@ gen # Go workspace file go.work -./bin +/bin