aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart/src/main.rs
blob: cd85137dca00b0af3582bbe90da7ae5779e8f43f (plain)
1
2
3
4
5
6
7
use clap::Parser;
use mozart::commands;

fn main() -> anyhow::Result<()> {
    let cli = commands::Cli::parse();
    commands::execute(&cli)
}