blob: 54f12921fc213a60576337e1d196bc0b894efdfe (
plain)
1
2
3
4
5
6
7
8
|
use std::collections::HashMap;
pub type ConfigHashMap = HashMap<String, HashMap<String, Option<String>>>;
pub fn die(message: &str) {
println!("{}", message);
std::process::exit(1);
}
|