hertz_scaffold/go.mod
liangzy ace5162dc3 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:32:07 +08:00

11 lines
183 B
Modula-2

module hertz_scaffold
go 1.19
require github.com/spf13/cobra v1.8.1
require (
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
)