summaryrefslogtreecommitdiffstats
path: root/src/compose/environment.rs
blob: 219a597e1b93f6326ee4ab8c2161fa864f4a554f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
pub struct Environment {
    pub aliases: Vec<String>,
    pub bins: Vec<String>,
}

impl Environment {
    pub fn new() -> Self {
        Environment {
            aliases: vec![],
            bins: vec![],
        }
    }
}