shitbox/src/cmd/true/mod.rs

37 lines
771 B
Rust
Raw Normal View History

2022-12-25 18:29:09 -05:00
use super::Cmd;
2022-12-20 12:05:21 -05:00
use crate::Path;
2022-12-20 18:35:45 -05:00
use clap::Command;
2022-12-25 18:29:09 -05:00
use std::{error::Error, process};
2022-12-20 12:05:21 -05:00
2022-12-25 18:29:09 -05:00
pub struct True {
name: &'static str,
path: Option<Path>,
2022-12-20 12:05:21 -05:00
}
2022-12-25 18:29:09 -05:00
pub const TRUE: True = True {
name: "true",
path: Some(Path::Bin),
};
impl Cmd for True {
fn name(&self) -> &str {
self.name
}
fn cli(&self) -> clap::Command {
Command::new(self.name)
.about("Does nothing successfully")
.long_about("Exit with a status code indicating success")
.version(env!("CARGO_PKG_VERSION"))
.author("Nathan Fisher")
}
fn run(&self, _matches: Option<&clap::ArgMatches>) -> Result<(), Box<dyn Error>> {
process::exit(0);
}
fn path(&self) -> Option<Path> {
self.path
}
2022-12-20 12:05:21 -05:00
}