aboutsummaryrefslogtreecommitdiffstats
path: root/mumlib/src
diff options
context:
space:
mode:
Diffstat (limited to 'mumlib/src')
-rw-r--r--mumlib/src/command.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/mumlib/src/command.rs b/mumlib/src/command.rs
index 351d7f6..27ca60c 100644
--- a/mumlib/src/command.rs
+++ b/mumlib/src/command.rs
@@ -1,5 +1,6 @@
use crate::state::{Channel, Server};
+use chrono::NaiveDateTime;
use serde::{Deserialize, Serialize};
#[derive(Clone, Debug, Deserialize, Serialize)]
@@ -63,7 +64,7 @@ pub enum CommandResponse {
server_state: Server,
},
PastMessage {
- message: (String, String),
+ message: (NaiveDateTime, String, String),
},
}