chore: Take the ownership in the CommandRunner trait

Signed-off-by: Awiteb <a@4rs.nl>
This commit is contained in:
Awiteb
2025-05-05 19:49:56 +00:00
parent 8a553f4de8
commit 4314cebfbb
4 changed files with 4 additions and 4 deletions

View File

@@ -103,7 +103,7 @@ impl Cli {
}
impl CommandRunner for Commands {
async fn run(&self, options: CliOptions) -> N34Result<()> {
async fn run(self, options: CliOptions) -> N34Result<()> {
tracing::trace!("Options: {options:#?}");
tracing::trace!("Handling: {self:#?}");
match self {