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
//! Connection state management for QQ Bot
//!
//! This module provides connection session management, state handling, and event parsing
//! for the websocket connections to QQ's gateway.

mod parsers;
mod session;
mod state;

pub use session::{ConnectionSession, Session, WsSink, WsStream};
pub use state::ConnectionState;