diff options
| author | Eskil Queseth <eskilq@kth.se> | 2020-11-05 00:44:04 +0100 |
|---|---|---|
| committer | Eskil Queseth <eskilq@kth.se> | 2020-11-05 00:44:04 +0100 |
| commit | 22579ced3d1d847a14683fe3b47fa2076df01751 (patch) | |
| tree | 507d5c8ba721fb31cd58c207be8c0d66e12595c6 /mumlib/src/command.rs | |
| parent | 4dd73f7b837572211b71483d62bbdfb1227d2aee (diff) | |
| download | mum-22579ced3d1d847a14683fe3b47fa2076df01751.tar.gz | |
add mute feature
Diffstat (limited to 'mumlib/src/command.rs')
| -rw-r--r-- | mumlib/src/command.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mumlib/src/command.rs b/mumlib/src/command.rs index 28b4d79..675fb7d 100644 --- a/mumlib/src/command.rs +++ b/mumlib/src/command.rs @@ -20,13 +20,13 @@ pub enum Command { }, ServerDisconnect, Status, - DeafenSelf, - MuteSelf, - MuteOther(String), ServerStatus { host: String, port: u16, }, + DeafenSelf(Option<bool>), + MuteSelf(Option<bool>), + MuteOther(String, Option<bool>), } #[derive(Debug, Deserialize, Serialize)] |
