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
//! Event registration and dispatch helpers.

mod handlers;
mod payload;
mod registry;

pub(crate) use registry::parse_and_handle;

#[cfg(test)]
mod tests;