Base for clearing the chat and deleting messages

This commit is contained in:
Xithrius 2023-08-07 23:03:53 -07:00
parent ce13efd12f
commit 6d3eb7c5eb
No known key found for this signature in database
GPG Key ID: DF6738B80C155B71

View File

@ -206,6 +206,10 @@ async fn handle_message_command(
.unwrap();
}
}
// https://dev.twitch.tv/docs/irc/tags/#clearchat-tags
// https://docs.rs/irc/latest/irc/client/prelude/enum.Command.html
// https://datatracker.ietf.org/doc/html/rfc2812#section-3.4.7
"CLEARCHAT" | "CLEARMSG" => {}
_ => (),
}
}