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
//! Botgo-style event registration and dispatch helpers.

#![allow(non_snake_case, non_upper_case_globals)]

mod handlers;
mod payload;
mod register;
mod registry;
mod types;

pub use payload::{ParseData, PayloadData};
pub use register::{RegisterHandlers, RegisterableHandler};
pub use registry::{ParseAndHandle, RegisterHandler};
pub use types::*;

#[cfg(test)]
mod tests;