1 2 3 4 5 6 7 8 9 10 11
use copyrite::cli::Command; use copyrite::error::Result; #[tokio::main] async fn main() -> Result<()> { let args = Command::parse_args()?; args.execute().await?; Ok(()) }