Feat: add sse broker

This commit is contained in:
Grail Finder
2025-05-03 13:18:51 +03:00
parent 8d85d0612c
commit 0fbc106f9a
5 changed files with 140 additions and 3 deletions

View File

@ -1,5 +1,9 @@
package models
var (
CtxRoomIDKey = "current_room"
CtxRoomIDKey = "current_room"
CtxUsernameKey = "username"
CtxSessionKey = "session"
// cache
CacheRoomPrefix = "room#"
)