delete unused block in matching callback

This commit is contained in:
Akulij 2025-04-30 13:43:30 +03:00
parent 5192b43e0b
commit 0c71fd3796

View File

@ -220,9 +220,6 @@ async fn callback_handler(bot: Bot, mut db: DB, q: CallbackQuery) -> BotResult<(
bot.send_message(q.from.id, format!("Some project No: {id}"))
.await?;
}
_ => {
unimplemented!()
}
};
Ok(())