aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/mozart/src/main.rs')
-rw-r--r--crates/mozart/src/main.rs4
1 files changed, 2 insertions, 2 deletions
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)
}