cntr 2.0.0

A container debugging tool based on Linux mount API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
extern crate cntr;

use std::{env, process};

fn main() -> process::ExitCode {
    match cntr::cli::run_with_args(env::args_os()) {
        Ok(code) => code,
        Err(e) => {
            eprintln!("{}", e);
            process::ExitCode::FAILURE
        }
    }
}