| 38 | #[derive(Message)] |
| 39 | #[rtype(result = "()")] |
| 40 | pub struct ClientMessage { |
| 41 | /// Id of the client session |
| 42 | pub id: u64, |
| 43 | /// Peer message |
| 44 | pub msg: String, |
| 45 | /// Room name |
| 46 | pub room: String, |
| 47 | } |
| 48 | |
| 49 | /// List of available rooms |
| 50 | pub struct ListRooms; |
nothing calls this directly
no outgoing calls
no test coverage detected