Update httpHandler.go

This commit is contained in:
anoshenko 2024-04-29 12:32:24 +03:00
parent cbca1e7c87
commit 918fbf3473
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ Example for echo:
func NewHandler(urlPrefix string, createContentFunc func(Session) SessionContent, params AppParams) *httpHandler {
app := new(application)
app.params = params
app.sessions = map[int]Session{}
app.sessions = map[int]sessionInfo{}
app.createContentFunc = createContentFunc
apps = append(apps, app)