mirror of
https://github.com/kataras/iris.git
synced 2025-12-20 03:17:04 +00:00
update dependencies
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
module github.com/kataras/iris/_examples/websocket/basic
|
||||
|
||||
go 1.24.3
|
||||
go 1.25
|
||||
|
||||
require (
|
||||
github.com/iris-contrib/middleware/jwt v0.0.0-20250207234507-372f6828ef8c
|
||||
|
||||
@@ -54,7 +54,7 @@ func main() {
|
||||
// so the client should dial with ws://localhost:8080/echo?token=$token
|
||||
Extractor: jwt.FromParameter("token"),
|
||||
|
||||
ValidationKeyGetter: func(token *jwt.Token) (interface{}, error) {
|
||||
ValidationKeyGetter: func(token *jwt.Token) (any, error) {
|
||||
return []byte("My Secret"), nil
|
||||
},
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
module gorilla-filewatch-example
|
||||
|
||||
go 1.24.3
|
||||
go 1.25
|
||||
|
||||
require (
|
||||
github.com/gorilla/websocket v1.5.3
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
module github.com/kataras/iris/_examples/websocket/socketio
|
||||
|
||||
go 1.24.3
|
||||
go 1.25
|
||||
|
||||
require (
|
||||
github.com/googollee/go-socket.io v1.7.0
|
||||
|
||||
Reference in New Issue
Block a user