use std::collections::HashMap;
use serde_derive::{Deserialize, Serialize};
#[derive(Debug, Serialize, Deserialize)]
pub struct Definitions {
pub providers: HashMap<String, String>,
}
pub struct CmdExit {
pub code: exitcode::ExitCode,
pub message: Option<String>,
}
#[cfg(test)]
mod tests {
#[test]
fn test_foo() {
assert_ne!(4, 5);
}
}