botrs 0.12.1

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
//! Permission-related data structures for the QQ Guild Bot API.
//!
//! This module contains structures for managing API permissions and permission demands
//! in QQ Guild bots.

mod api;
mod create;
mod demand;
mod identify;

pub use api::{APIPermission, APIPermissions};
pub use create::APIPermissionDemandToCreate;
pub use demand::APIPermissionDemand;
pub use identify::APIPermissionDemandIdentify;

#[cfg(test)]
mod tests;