summaryrefslogtreecommitdiff
path: root/src/utilities.rs
blob: d408b7e8a1bd33353d168c7d66f6f31a238233f1 (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!("Hello, world!");
    std::process::exit(1);
}