14 lines
266 B
Go
14 lines
266 B
Go
package models
|
|
|
|
var (
|
|
CtxRoomIDKey = "current_room"
|
|
CtxUsernameKey = "username"
|
|
CtxSessionKey = "session"
|
|
// cache
|
|
CacheRoomPrefix = "room#"
|
|
CacheStatePrefix = "state-"
|
|
// sse
|
|
NotifyRoomUpdatePrefix = "roomupdate_"
|
|
NotifyBacklogPrefix = "backlog_"
|
|
)
|