rbxcloud 0.17.0

CLI and SDK for the Roblox Open Cloud APIs
Documentation
mod cli;

use clap::Parser;
use cli::Cli;
use std::process;

#[tokio::main]
async fn main() {
    let cli_args = Cli::parse();

    match cli_args.run().await {
        Ok(str) => {
            if let Some(s) = str {
                println!("{s}");
            }
        }
        Err(err) => {
            eprintln!("{err:?}");
            process::exit(1);
        }
    }
}