mgr: Add sleep action

This commit is contained in:
2025-10-10 12:41:04 +02:00
parent 65bfa84566
commit 8447343233
4 changed files with 125 additions and 0 deletions

View File

@@ -8,6 +8,10 @@ pub enum ParseError {
UnknownAction { action: String },
#[error("unexpected input: {rest:?}")]
UnexpectedInput { rest: Vec<String> },
#[error("missing argument")]
MissingArgument,
#[error("error parsing argument: {message}")]
ArgumentParse { message: String },
}
pub trait CliCommand {