Skip to content

Commit

Permalink
Fix missing .env file
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmerlin committed Apr 1, 2024
1 parent df32d82 commit 7d8ce51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion urllb/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ struct Config {

#[tokio::main]
async fn main() {
dotenvy::dotenv().unwrap();
dotenvy::dotenv().ok();
let config: Config = envy::from_env().unwrap();

{
Expand Down

0 comments on commit 7d8ce51

Please sign in to comment.