shitbox/utilbox/commands/mod.rs
2023-02-08 16:20:25 -05:00

36 lines
844 B
Rust

use shitbox::Cmd;
mod blkid;
mod clear;
mod mount;
mod mountpoint;
mod swaplabel;
mod swapoff;
mod swapon;
mod umount;
mod utilbox;
/// Parses a string into a command to run
#[must_use]
#[allow(clippy::box_default)]
pub fn get(name: &str) -> Option<Box<dyn Cmd>> {
match name {
"clear" => Some(Box::new(clear::Clear::default())),
"mountpoint" => Some(Box::new(mountpoint::Mountpoint::default())),
"swaplabel" => Some(Box::new(swaplabel::Swaplabel::default())),
"swapoff" => Some(Box::new(swapoff::Swapoff::default())),
"umount" => Some(Box::new(umount::Umount::default())),
"utilbox" => Some(Box::new(utilbox::Utilbox::default())),
_ => None,
}
}
pub static COMMANDS: [&str; 6] = [
"clear",
"mountpoint",
"swaplabel",
"swapoff",
"umount",
"utilbox",
];