From 27a829b784e82550de6ab94b7c27ded243434e11 Mon Sep 17 00:00:00 2001 From: Akulij Date: Fri, 9 May 2025 00:21:54 +0300 Subject: [PATCH] create AdminMisconfiguration error --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index e7a8768..ba39789 100644 --- a/src/main.rs +++ b/src/main.rs @@ -114,6 +114,7 @@ pub enum BotError { StorageError(#[from] mongodb_storage::MongodbStorageError<>::Error>), MsgTooOld(String), BotLogicError(String), + AdminMisconfiguration(String), } pub type BotResult = Result;