1
2
3
4
5
6
7
8
9
//! CDDL linter cli tool

mod cli;

fn main() {
    use clap::Parser;

    cli::Cli::parse().exec();
}