roboat 0.39.0

A high performance interface for the Roblox API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use roboat::ClientBuilder;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let client = ClientBuilder::new().build();

    // There is not really another way to debug this other than printing the xcsrf inside the source code for this method.
    client.force_refresh_xcsrf().await?;
    client.force_refresh_xcsrf().await?;
    client.force_refresh_xcsrf().await?;

    Ok(())
}