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
18
//! Guild-related data models for the QQ Guild Bot API.
//!
//! This module contains guild types for the QQ Bot Open API.

mod member;
mod model;
mod mute;
mod pager;
mod role;

pub use member::*;
pub use model::*;
pub use mute::*;
pub use pager::*;
pub use role::*;

#[cfg(test)]
mod tests;