envful 0.1.0

A tool to check env vars are present
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod checker;
pub mod runner;

#[derive(Debug, serde::Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Envful {
    pub variables: Vec<String>,
}

pub struct EnvVar {
    pub name: String,
    pub value: String,
    pub required: bool,
    pub default: Option<String>,
    pub description: Option<String>,
}