Skip to main content

oxibrain_cli/
lib.rs

1//! Library surface for the `oxibrain` CLI. The binary (`main.rs`) re-exports
2//! `Cli` / `Command` from this crate; integration tests reach into the
3//! internal `cmd` modules directly to drive the resolution ladder against
4//! hermetic fakes. Keeping the modules `pub` here means the production
5//! binary does not gain a new public API (no version bump, no SemVer impact)
6//! — the surface is consumed only by the in-crate tests directory.
7
8pub mod cli;
9pub mod cmd;