dotenv_consts is a macro that expands the environment variables in your dotfile to constanst.
dotenv_consts
```rust mod env { ::dotenvconsts::dotenvconsts!(); }
fn main() { println!("{}", env::SOME_VAR); } ```