| 6 | package proto |
| 7 | |
| 8 | type RedisMsg struct { |
| 9 | Op int `json:"op"` |
| 10 | ServerId string `json:"serverId,omitempty"` |
| 11 | RoomId int `json:"roomId,omitempty"` |
| 12 | UserId int `json:"userId,omitempty"` |
| 13 | Msg []byte `json:"msg"` |
| 14 | Count int `json:"count"` |
| 15 | RoomUserInfo map[string]string `json:"roomUserInfo"` |
| 16 | } |
| 17 | |
| 18 | type RedisRoomInfo struct { |
| 19 | Op int `json:"op"` |
nothing calls this directly
no outgoing calls
no test coverage detected