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
|
|
|
|
|
}
|