botrs 0.13.0

A Rust QQ Bot framework based on QQ Guild Bot API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Gateway event models for the QQ Guild Bot API.

mod auth;
mod constants;
mod events;
mod payload;

pub use auth::{
    Hello, Identify, IdentifyProperties, Ready, Resume, WSIdentityData, WSReadyData, WSResumeData,
    WSUser,
};
pub use constants::*;
pub use events::*;
pub use payload::{GatewayEvent, WSPayload, WSPayloadBase};

#[cfg(test)]
mod tests;