(cmd: String, author_id: String, room: String)
| 67 | } |
| 68 | |
| 69 | fn admin(cmd: String, author_id: String, room: String) -> Vec<module::messaging::Action> { |
| 70 | let mut client = CommandClient::new(room.clone(), author_id); |
| 71 | Self::on_admin(&mut client, &cmd); |
| 72 | consume_client(client) |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | pub struct Recipient(pub String); |
nothing calls this directly
no test coverage detected