1 2 3 4 5 6 7 8 9
use anyhow::Result; use clap::Parser; use crabscore_cli::{cli::Cli, command}; #[tokio::main] async fn main() -> Result<()> { let cli = Cli::parse(); command::execute(cli.command, cli.verbose).await }