mk-dl-bot_legacy/src/main.rs
2024-02-24 14:32:08 +02:00

14 lines
175 B
Rust

use dotenv::dotenv;
mod bot;
use bot::bot::bot_main;
mod dl;
#[tokio::main]
async fn main() -> anyhow::Result<()> {
dotenv().ok();
bot_main().await?;
Ok(())
}