gh-hex 0.0.0

A project to create more functional versions of existing hex tools
1
2
3
4
5
6
7
8
9
use std::env;

pub fn set_env(env: &str, value: &str) {
    env::set_var(env, value);
}

pub fn get_env(env: &str) -> String {
    env::var(env).unwrap_or(String::new())
}