1 2 3 4 5 6 7 8 9 10 11
use std::io::{stderr, stdout}; use clap::Parser; use create_rust_github_repo::CreateRustGithubRepo; #[tokio::main] async fn main() -> anyhow::Result<()> { CreateRustGithubRepo::parse() .run(&mut stdout(), &mut stderr(), None) .await }