webhook-rs
Discord Webhook API Wrapper
Example usage
For a full example, take a look at examples/example.rs.
let url: &str = "Webhook URL";
let client: WebhookClient = new;
client.send.await?;
Get started
To get started, simply add the crate to your Cargo.toml.
[]
= "1.0.0"
If you only want the types, you can get rid of the networking-related
dependencies by using the feature models.
[]
= { = "1.0.0", = ["models"] }
To do
- Attachments
- Components
Contribute
Any type of contribution is greatly appreciated.