aboutsummaryrefslogtreecommitdiffstats
path: root/mumlib
diff options
context:
space:
mode:
Diffstat (limited to 'mumlib')
-rw-r--r--mumlib/src/command.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/mumlib/src/command.rs b/mumlib/src/command.rs
index d2e8477..de54261 100644
--- a/mumlib/src/command.rs
+++ b/mumlib/src/command.rs
@@ -29,6 +29,7 @@ pub enum Command {
},
Status,
UserVolumeSet(String, f32),
+ PastMessages,
}
#[derive(Debug, Deserialize, Serialize)]
@@ -55,4 +56,7 @@ pub enum CommandResponse {
Status {
server_state: Server,
},
+ PastMessages {
+ messages: Vec<(String, String)>,
+ }
}