kg-cli 0.2.16

A knowledge graph CLI tool for managing structured information
Documentation
1
2
3
4
5
6
fn main() {
    if let Err(err) = kg::run(std::env::args_os(), &std::env::current_dir().expect("cwd")) {
        eprintln!("error: {}", kg::format_error_chain(&err));
        std::process::exit(1);
    }
}