package models var ( AuthCookie = "session_token" CtxRoomIDKey = "current_room" CtxUsernameKey = "username" CtxSessionKey = "session" // cache CacheRoomPrefix = "room#" CacheStatePrefix = "state-" CacheBotPredix = "botkey_" // sse NotifyRoomListUpdate = "roomlistupdate" NotifyRoomUpdatePrefix = "roomupdate_" NotifyBacklogPrefix = "backlog_" NotifyJournalPrefix = "journal_" )