del-rs API Wrapper

This is a Rust API wrapper for Discord Extreme List's API.

Getting Started

using the API Wrapper

```rs use del_rs::del::Del;

[tokio::main]

async fn main() -> Result<(), Box> { // posting stats - requires Del to be built with token and id to work let del = Del::new("DEL TOKEN", "BOT ID");

del.post_stats(1000, None).await; // Result

// methods that don't require authorization let del = Del::default();

del.getwebsitestats().await; // Result

del.getwebsitehealth().await; // Result

del.getbotinfo("BOT ID").await; // Result

del.getserverinfo("SERVER ID").await; // Result

del.gettemplateinfo("TEMPLATE ID").await; // Result

del.getuserinfo("USER ID").await; // Result } ```