Fix build error

This commit is contained in:
tommy 2019-07-17 18:35:32 -04:00
parent cc6aa6f33d
commit 5b928ce7c5

View File

@ -68,7 +68,10 @@ fn main() {
for event in events {
match event {
Event::ChatMsg(msg) => println!("{}", msg),
Event::Chat {
chat_type: _,
message,
} => println!("{}", message),
Event::Disconnect => {} // TODO
}
}