From d36d10422c4ce2a8215e939c971506f57aaed822 Mon Sep 17 00:00:00 2001 From: liangzy Date: Thu, 18 Jul 2024 17:35:19 +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 e63e520..d65caaa 100644 --- a/.gitignore +++ b/.gitignore @@ -28,4 +28,4 @@ gen # Go workspace file go.work - +./bin