aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index e7a11a9..289d047 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,3 +1,7 @@
+use clap::Parser;
+use mozart::commands;
+
fn main() {
- println!("Hello, world!");
+ let cli = commands::Cli::parse();
+ commands::execute(&cli.command);
}