slancha-wire 0.5.15

Magic-wormhole for AI agents — bilateral signed-message bus over a mailbox relay
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! `wire` binary entry point.
//!
//! All logic lives in `wire::cli` so it can be unit-tested. This file is
//! only argument parsing + error printing.

use std::process::ExitCode;

fn main() -> ExitCode {
    if let Err(e) = wire::cli::run() {
        eprintln!("error: {e:#}");
        return ExitCode::from(1);
    }
    ExitCode::SUCCESS
}