Rust crate for Boticord API
This crate doesn't require using Serenity or Twilight. It makes working with the Boticord API more user-friendly. There are only some methods to use, but it's all what do we have in Boticord API.
If you have any questions you can Marakarka#0575
on discord.
In the future we will add some structs to work with. You can use warp
or something like that to fetch them. (We will add an example)
We will add an example how to one (with Serenity
, because Twilight
users are usually Professionals)
```rs use boticordrs::{BoticordClient}; use boticordrs::types::{BotStats};
async fn main() { let client = BoticordClient::new("your token".to_string()).expect("failed client");
let stats = BotStats {servers: 2514, shards: 3, users: 338250};
match client.post_bot_stats(stats).await {
Ok(_) => {
println!("Well Done!")
},
Err(e) => eprintln!("{}", e),
}
} ```
warp
)