parameters_lib/
types.rs

1
2use std::collections::BTreeMap;
3
4pub type Search = String;
5pub type Environment = Option<String>;
6pub type Instance = Option<String>;
7pub type EnvsMap = BTreeMap<String, String>;