Files
golias/models/keys.go
2025-05-10 11:03:23 +03:00

13 lines
229 B
Go

package models
var (
CtxRoomIDKey = "current_room"
CtxUsernameKey = "username"
CtxSessionKey = "session"
// cache
CacheRoomPrefix = "room#"
CacheStatePrefix = "state-"
// sse
NotifyRoomUpdatePrefix = "roomupdate_"
)