From 08a845acdd831a9de186696b9614ee397c8e7c68 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Wed, 11 Feb 2026 16:57:41 +0900 Subject: change commands::*::execute() signatures --- crates/mozart/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crates/mozart/src/main.rs') diff --git a/crates/mozart/src/main.rs b/crates/mozart/src/main.rs index 289d047..cd85137 100644 --- a/crates/mozart/src/main.rs +++ b/crates/mozart/src/main.rs @@ -1,7 +1,7 @@ use clap::Parser; use mozart::commands; -fn main() { +fn main() -> anyhow::Result<()> { let cli = commands::Cli::parse(); - commands::execute(&cli.command); + commands::execute(&cli) } -- cgit v1.3.1