//! Human-readable reports rendered from the ingested DuckDB.
//!//! Each report kind is its own submodule; this module just dispatches.
pubmodusage;usecrate::cli::{ReportArgs, ReportKind};pubfnrun(args: ReportArgs){match args.kind {ReportKind::Usage(a)=>usage::run(a),}}