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.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/crates/mozart/src/main.rs b/crates/mozart/src/main.rs
new file mode 100644
index 0000000..289d047
--- /dev/null
+++ b/crates/mozart/src/main.rs
@@ -0,0 +1,7 @@
+use clap::Parser;
+use mozart::commands;
+
+fn main() {
+ let cli = commands::Cli::parse();
+ commands::execute(&cli.command);
+}