diff --git a/src/main.rs b/src/main.rs index 1c89d71..bae49bb 100644 --- a/src/main.rs +++ b/src/main.rs @@ -159,6 +159,8 @@ pub enum BotError { BotLogicError(String), AdminMisconfiguration(String), ScriptError(#[from] ScriptError), + IoError(#[from] std::io::Error), + RwLockError(String), } pub type BotResult = Result;