botrs 0.12.2

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 channel;
mod enums;
mod permissions;
mod value;

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

#[cfg(test)]
mod tests;