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

mod enums;
mod model;
mod permissions;
mod value;

pub use enums::*;
pub use model::*;
pub use permissions::*;
pub use value::*;

#[cfg(test)]
mod tests;