initial commit

This commit is contained in:
2023-11-22 21:38:21 +01:00
commit 47dd2b02c4
15 changed files with 3534 additions and 0 deletions

17
src/main.rs Normal file
View File

@@ -0,0 +1,17 @@
mod utils;
mod db;
mod discord;
use std::error::Error;
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
dotenvy::dotenv()?;
color_eyre::install()?;
utils::setup_logging();
let bot = discord::make_bot().await?;
bot.run().await?;
Ok(())
}