This commit is contained in:
ModulatingForce 2024-03-25 21:26:32 -04:00
commit feff709714
2 changed files with 221 additions and 3 deletions

View file

@ -37,6 +37,15 @@ pub enum ChangeResult {
pub struct Channel(pub String);
// impl PartialEq for Channel {
// fn eq(&self, other: &Self) -> bool {
// let Channel(name1) = self.clone();
// let Channel(name2) = other.clone();
// name1.to_lowercase() == name2.to_lowercase()
// }
// }
// impl Eq for Channel {}
use super::bot_actions::ExecBodyParams;
use super::botmodules::StatusType;