| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- package nameActor
- const (
- Dev = "dev" // path = {center}.dev
- CenterOps = "ops" // path = {center}.ops
- CenterPlayer = "player" // path = {center}.player.{int}
- )
- const (
- GateUser = "user" // path = {gate}.user.
- GateSessions = "sessions" // path = {任意节点id}.sessions
- )
- const (
- Login = "login" // 登录 path = {game}.login
- Mail = "mail" // 邮件 path = {game}.mail
- GameOps = "ops" // 运维 path = {game}.ops
- GamePlayer = "player" // 玩家 path = {game}.player
- Marquee = "marquee" // 跑马灯 path = {game}.marquee
- Order = "order" // 充值订单 path = {game}.order
- )
- const (
- Chat_Game = "chatGame" // 聊天室.游戏 path = {chat}.chatGame
- Chat_League = "chatLeague" // 聊天室.联盟 path = {chat}.chatLeague
- Chat_Map = "chatMap" // 聊天室.地图 path = {chat}.chatMap
- Chat_Group = "chatGroup" // 聊天室.群组 path = {chat}.chatGroup
- )
- const (
- League = "league" //联盟 path = {league}.league.
- League_Ops = "ops" //联盟运维 path = {league}.ops
- )
- const (
- GenPool = "genPool" // 产出池 path = {任意节点id}.genPool
- )
- const (
- Record = "record" // 录像 path = {record}.record
- )
|