1 2 3 4 5 6 7 8
use anyhow::Result; use appctl::cli::Cli; use clap::Parser; #[tokio::main] async fn main() -> Result<()> { Cli::parse().run().await }