htmgo/extensions/websocket/opts/opts.go

10 lines
202 B
Go
Raw Normal View History

2024-10-16 20:43:34 +00:00
package opts
import "github.com/maddalax/htmgo/framework/h"
type ExtensionOpts struct {
WsPath string
2024-11-04 16:37:41 +00:00
RoomName func(ctx *h.RequestContext) string
2024-10-16 20:43:34 +00:00
SessionId func(ctx *h.RequestContext) string
}