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

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

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