1 2 3 4 5 6 7 8
use clap::Parser; use vitup::client::args::VitupClientCommand; use vitup::Result; #[tokio::main] pub async fn main() -> Result<()> { VitupClientCommand::parse().exec() }