hertz_scaffold/main.go
liangzy a03430e03f 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:18:45 +08:00

8 lines
84 B
Go

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