pub mod args;
pub mod dispatch;
pub use args::build_cli;
pub use dispatch::run_cli;
use clap::Subcommand;
pub fn parse_cli() -> clap::ArgMatches {
build_cli().get_matches()
}
#[derive(Subcommand)]
pub enum Commands {
List,
Config {
init: bool,
print: bool,
edit: bool,
editor: Option<String>,
},
Help,
}