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() }