bijux-cli 0.3.5

Command-line runtime for automation, plugin-driven tools, and interactive workflows with structured output.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![forbid(unsafe_code)]
//! Canonical user-facing Rust binary entrypoint.

use std::process::ExitCode;

#[cfg(test)]
use libc as _;

fn main() -> ExitCode {
    bijux_cli::api::runtime::run_cli_from_env()
}