15 lines
222 B
Rust
15 lines
222 B
Rust
use dotenv::dotenv;
|
|
|
|
mod bot;
|
|
use bot::bot::bot_main;
|
|
|
|
mod dl;
|
|
|
|
#[tokio::main]
|
|
async fn main() -> anyhow::Result<()> {
|
|
dotenv().ok();
|
|
//dotenv::from_filename(".env.test").ok();
|
|
|
|
bot_main().await?;
|
|
Ok(())
|
|
}
|