//! `obj` — command-line entry point.
//!//! Thin shim: call [`obj_cli::run`], exit with the returned code.
//! All logic lives in the sibling library half so integration tests
//! exercise the exact same dispatch path.
#![forbid(unsafe_code)]#![deny(missing_docs)]#![deny(rustdoc::broken_intra_doc_links)]fnmain(){std::process::exit(obj_cli::run());}