From 918fbf347368b141c0d5f54e3c689bfaab07b038 Mon Sep 17 00:00:00 2001 From: anoshenko Date: Mon, 29 Apr 2024 12:32:24 +0300 Subject: [PATCH] Update httpHandler.go --- httpHandler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpHandler.go b/httpHandler.go index ea77943..0593397 100644 --- a/httpHandler.go +++ b/httpHandler.go @@ -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)