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(); }