discord-authority 0.1.2

A fast, async Discord selfbot library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod user;
pub mod guild;
pub mod channel;
pub mod message;
pub mod embed;
pub mod presence;
pub mod poll;

pub use user::User;
pub use guild::{Guild, GuildMember, Role, Ban};
pub use channel::{Channel, Invite};
pub use message::Message;
pub use embed::Embed;
pub use presence::{Presence, Activity, CustomStatus, RichPresence, SpotifyRPC};
pub use poll::Poll;