BoticordRS

Rust crate for Boticord API

Project is currently in development.

Main Information:

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.

What about Boticord Webhooks?

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)

What about AutoLoop?

We will add an example how to one (with Serenity, because Twilight users are usually Professionals)

Examples:

Post Some Stats:

```rs use boticordrs::{BoticordClient}; use boticordrs::types::{BotStats};

[tokio::main]

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),
}

} ```

ToDo:

Bots:

Servers:

Users:

Other: