Library and binary providing interaction with features of the Discord API.
To use this library head to the crates.io link above and copy the snippet to enter into your Cargo.toml
.
```rust use discordapi::getinvite;
let invite = get_invite("python").await?;
println!("Invite for: {}", invite.guild?.name); ```
```rust use discordapi::getinvite;
let invite = get_invite("python").await?;
let features = invite.guild?.features;
// do something with features! ```
More examples can be found in the command line utility which maintains feature parity with the library.
cargo build