vrcli 0.1.1

A command-line interface for the VRChat API that lets you manage friends, users, worlds, and authentication directly from your terminal
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod handlers;
mod login;
mod two_factor;
mod utils;
mod verification;

use anyhow::Result;
use vrcli::AuthAction;

/// Main entry point for authentication commands
pub async fn handle_auth_command(action: AuthAction) -> Result<()> {
    handlers::handle_auth_command(action).await
}