ruvolt 0.5.0

An API wrapper for Revolt written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Revolt API models.

#[doc(inline)]
pub use {attachment::*, channel::*, message::*, server::*, user::*};

mod attachment;
mod channel;
pub mod events;
mod message;
mod server;
mod user;

/// Models id type.
pub type Id = String;