2
0
Files
gin-sse/go.mod
T
Bo-Yi Wu 47d1560405 chore: update Go version to 1.23 and adjust dependencies accordingly
- Remove support for Go versions 1.21 and 1.22 in the GitHub workflow
- Update Go version to 1.23 in go.mod
- Add indirect dependencies: go-spew, go-difflib, and yaml.v3 in go.mod

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
2025-04-08 08:31:24 +08:00

12 lines
235 B
Modula-2

module github.com/gin-contrib/sse
go 1.23
require github.com/stretchr/testify v1.10.0
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)