dotenv_rust 0.1.2

A `dotenv` implementation for Rust
Documentation
1
2
3
4
5
6
7
use dotenv_rs::{dotenv, dotenv_with_prefix};
use std::env;

fn main() {
    dotenv_with_prefix("Test").ok();
    dotenv().ok();
}