//! User-facing startup output for text and JSON modes.
modprinter;/// Output printer used by CLI and server startup flows.
pubuseprinter::Printer;usecrate::error::AppError;/// Print a plain-text startup error before a [`Printer`] is available.
pubfnprint_startup_error(app_name:&str, error:&AppError){eprintln!("[{app_name}] error: {error}");}