Skip to content

Commit 57435f1

Browse files
committed
feat(go): add go.mod with Gin v1.11.0
- Set up Go 1.25.5 module - Add gin-gonic/gin v1.11.0 with HTTP/3 support - Include all required dependencies
1 parent 013f492 commit 57435f1

1 file changed

Lines changed: 37 additions & 0 deletions

File tree

go/gin/go.mod

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
module github.com/entrydsm/example/go/gin
2+
3+
go 1.25.5
4+
5+
require github.com/gin-gonic/gin v1.11.0
6+
7+
require (
8+
github.com/bytedance/sonic v1.14.2 // indirect
9+
github.com/bytedance/sonic/loader v0.2.1 // indirect
10+
github.com/cloudwego/base64x v0.1.4 // indirect
11+
github.com/cloudwego/iasm v0.2.0 // indirect
12+
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
13+
github.com/gin-contrib/sse v1.1.0 // indirect
14+
github.com/go-playground/locales v0.14.1 // indirect
15+
github.com/go-playground/universal-translator v0.18.1 // indirect
16+
github.com/go-playground/validator/v10 v10.28.0 // indirect
17+
github.com/goccy/go-json v0.10.2 // indirect
18+
github.com/goccy/go-yaml v1.19.0 // indirect
19+
github.com/json-iterator/go v1.1.12 // indirect
20+
github.com/klauspost/cpuid/v2 v2.2.9 // indirect
21+
github.com/leodido/go-urn v1.4.0 // indirect
22+
github.com/mattn/go-isatty v0.0.20 // indirect
23+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
24+
github.com/modern-go/reflect2 v1.0.2 // indirect
25+
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
26+
github.com/quic-go/quic-go v0.57.1 // indirect
27+
github.com/stretchr/testify v1.11.1 // indirect
28+
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
29+
github.com/ugorji/go/codec v1.3.1 // indirect
30+
golang.org/x/arch v0.12.0 // indirect
31+
golang.org/x/crypto v0.31.0 // indirect
32+
golang.org/x/net v0.47.0 // indirect
33+
golang.org/x/sys v0.28.0 // indirect
34+
golang.org/x/text v0.21.0 // indirect
35+
google.golang.org/protobuf v1.36.10 // indirect
36+
gopkg.in/yaml.v3 v3.0.1 // indirect
37+
)

0 commit comments

Comments
 (0)