// Copyright (C) 2026 Industrial Algebra
// SPDX-License-Identifier: Apache-2.0
//! The `proserpina` command-line interface.
//!
//! The CLI is a thin wrapper over testable library entry points, so the
//! critique logic can be exercised without spawning a process:
//! - [`run_critique_echo`] — the offline echo path (always available under
//! `cli`).
//! - [`run_critique`] — the multi-provider roster path (requires `cli` +
//! `backend-http`).
//!
//! The binary (`src/main.rs`) parses arguments, reads the input file, calls
//! the appropriate entry point, and writes the report.
pub use run_critique_echo;
pub use ;