unifier-cli 0.4.0

Filesystem postbox for inter-process communication via a Unix tree
Documentation
1
2
3
4
5
6
7
8
9
use std::process::ExitCode;

fn main() -> ExitCode {
    if let Err(e) = unifier::run() {
        eprintln!("{e}");
        return ExitCode::FAILURE;
    }
    ExitCode::SUCCESS
}