10 lines
241 B
Go
10 lines
241 B
Go
package ws
|
|
|
|
import (
|
|
"github.com/maddalax/htmgo/extensions/websocket/internal/wsutil"
|
|
"github.com/maddalax/htmgo/framework/h"
|
|
)
|
|
|
|
func ManagerFromCtx(ctx *h.RequestContext) *wsutil.SocketManager {
|
|
return wsutil.SocketManagerFromCtx(ctx)
|
|
}
|