47d1560405
- 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>
12 lines
235 B
Modula-2
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
|
|
)
|