From e1b6b5aa104ac215a6d94a26d623bd67b93feef0 Mon Sep 17 00:00:00 2001 From: Akulij Date: Tue, 27 May 2025 14:14:23 +0500 Subject: [PATCH] derive Clone for BotController --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 8e1d17a..db5e909 100644 --- a/src/main.rs +++ b/src/main.rs @@ -106,6 +106,7 @@ pub enum Callback { type CallbackStore = CallbackInfo; +#[derive(Clone)] pub struct BotController { pub bot: Bot, pub db: DB,