initial commit
This commit is contained in:
17
src/discord/utils.rs
Normal file
17
src/discord/utils.rs
Normal file
@@ -0,0 +1,17 @@
|
||||
use crate::db::Database;
|
||||
|
||||
pub use poise::serenity_prelude as serenity;
|
||||
pub struct BotData {
|
||||
database: Database,
|
||||
}
|
||||
|
||||
impl BotData {
|
||||
pub async fn new() -> color_eyre::Result<Self> {
|
||||
Ok(Self {
|
||||
database: Database::new().await?,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
pub type Error = Box<dyn std::error::Error + Send + Sync>;
|
||||
pub type Context<'a> = poise::Context<'a, BotData, Error>;
|
||||
Reference in New Issue
Block a user