aboutsummaryrefslogtreecommitdiffstats
path: root/mumlib/src/command.rs
diff options
context:
space:
mode:
authorEskil Queseth <eskilq@kth.se>2020-10-21 02:24:16 +0200
committerEskil Queseth <eskilq@kth.se>2020-10-21 04:28:17 +0200
commitd215385473f5380a1166101596e135ec6ede5501 (patch)
treef5a76bfe19e01da3250f380021ce9b111c95023a /mumlib/src/command.rs
parent46a53f38cde86439a2ca8b6d24887f842530f679 (diff)
downloadmum-d215385473f5380a1166101596e135ec6ede5501.tar.gz
add printing of welcome message to server connect
Diffstat (limited to 'mumlib/src/command.rs')
-rw-r--r--mumlib/src/command.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/mumlib/src/command.rs b/mumlib/src/command.rs
index 05702f0..e404056 100644
--- a/mumlib/src/command.rs
+++ b/mumlib/src/command.rs
@@ -23,5 +23,6 @@ pub enum Command {
#[derive(Debug, Deserialize, Serialize)]
pub enum CommandResponse {
ChannelList { channels: Channel },
+ ServerConnect { welcome_message: Option<String> },
Status { server_state: Server },
}