| 29 | #[derive(Message)] |
| 30 | #[rtype(result = "()")] |
| 31 | pub struct Message { |
| 32 | /// Id of the client session |
| 33 | pub id: u64, |
| 34 | /// Peer message |
| 35 | pub msg: String, |
| 36 | /// Room name |
| 37 | pub room: String, |
| 38 | } |
| 39 | |
| 40 | /// List of available rooms |
| 41 | pub struct ListRooms; |
no outgoing calls
no test coverage detected