hertz_scaffold/main.go
liangzy 7e88cd4d96 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.
2024-07-18 17:21:37 +08:00

8 lines
74 B
Go

package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}