use crate::Path; use clap::Command; use std::process; pub const PATH: Path = Path::Bin; #[must_use] pub fn cli() -> Command { Command::new("false") .about("Does nothing unsuccessfully") .long_about("Exit with a status code indicating failure") .author("Nathan Fisher") .version(env!("CARGO_PKG_VERSION")) } pub fn run() { process::exit(1); }