Expand description
Client for the freestuffbot.xyz API.
Main interface is through the Client
struct, which is constructed using
Client::builder()
.
An API key can be gotten from https://freestuffbot.xyz.
§Usage
let api_key = "secret api key";
let client = Client::builder()
.key(&api_key)
.build()?;
client.ping().await?;
Re-exports§
pub use client::Client;