summaryrefslogtreecommitdiffstats
path: root/src/compose/environment.rs
blob: 7107d57ff639114e44d56823c4da66575fa91d2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use std::collections::HashMap;

pub struct Environment {
    pub aliases: HashMap<String, String>,
    pub bins: Vec<String>,
    pub cs: u8,
}

impl Environment {
    pub fn new() -> Self {
        Environment {
            aliases: HashMap::new(),
            bins: Vec::new(),
            cs: 0,
        }
    }
}