An open API service indexing awesome lists of open source software.

https://github.com/panicbit/dotenv_consts


https://github.com/panicbit/dotenv_consts

Last synced: 26 days ago
JSON representation

Awesome Lists containing this project

README

          

`dotenv_consts` is a macro that expands the environment variables in your dotfile to constanst.

```rust
mod env {
::dotenv_consts::dotenv_consts!();
}

fn main() {
println!("{}", env::SOME_VAR);
}
```