9 lines
156 B
Go
9 lines
156 B
Go
|
|
package opts
|
||
|
|
|
||
|
|
import "github.com/maddalax/htmgo/framework/h"
|
||
|
|
|
||
|
|
type ExtensionOpts struct {
|
||
|
|
WsPath string
|
||
|
|
SessionId func(ctx *h.RequestContext) string
|
||
|
|
}
|