fix(env): make dotenv file optional

This commit is contained in:
2025-09-06 18:40:04 +04:00
parent 57c1699c9a
commit cc7adf10ed

View File

@@ -111,7 +111,7 @@ fn main() -> io::Result<()> {
}, },
)); ));
dotenv().unwrap(); let _ = dotenv();
env_logger::init(); env_logger::init();