diff --git a/dicebot/src/bot/mod.rs b/dicebot/src/bot/mod.rs index 5928cda..955f9ff 100644 --- a/dicebot/src/bot/mod.rs +++ b/dicebot/src/bot/mod.rs @@ -4,13 +4,10 @@ use crate::db::sqlite::Database; use crate::db::DbState; use crate::error::BotError; use crate::state::DiceBotState; -use dirs; use log::info; -use matrix_sdk::{self, identifiers::EventId, room::Joined, Client, ClientConfig, SyncSettings}; +use matrix_sdk::{self, identifiers::EventId, room::Joined, Client, SyncSettings}; use std::clone::Clone; -use std::path::PathBuf; use std::sync::{Arc, RwLock}; -use url::Url; mod command_execution; pub mod event_handlers;