1
2
3
4
5
6
7
pub fn version() -> &'static str {
    return option_env!("CARGO_PKG_VERSION").unwrap_or("unknown");
}

pub fn run(format: &str) -> i32 {
    return 0;
}