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.
This commit is contained in:
liangzy 2024-07-18 17:33:30 +08:00
parent ace5162dc3
commit 1f05b680f8

View File

@ -13,5 +13,5 @@ var rootCmd = &cobra.Command{
}
func main() {
fmt.Println("Hello, World!")
rootCmd.Execute()
}