fix app not working without .env file

This commit is contained in:
2026-04-05 00:37:41 +03:00
parent 3f65e5d83e
commit 45dde40008
+1 -1
View File
@@ -51,7 +51,7 @@ struct Args {
#[tokio::main] #[tokio::main]
async fn main() -> Result<()> { async fn main() -> Result<()> {
dotenv::dotenv()?; dotenv::dotenv().ok();
let args = Args::parse(); let args = Args::parse();