ockam_command 0.117.0

End-to-end encryption and mutual authentication for distributed applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// This file exists to hack around some limitations cargo workspaces have around
// binary names. The issue is that we need to avoid the `ockam` binary colliding
// with the `ockam` crate.

use ockam_command::util::exitcode;

fn main() {
    if let Err(e) = ockam_command::entry_point::run() {
        // initialization errors are displayed here
        println!("{:?}", e);
        std::process::exit(exitcode::SOFTWARE);
    }
}