robit_qq/lib.rs
1//! robit-qq: QQ Official Bot platform frontend for the Robit agent.
2//!
3//! Implements [`robit_chatbot::PlatformAdapter`] for the QQ Official Bot API
4//! (WebSocket gateway + HTTP message sending) and ships the `robit-qq` binary.
5
6pub mod platform;
7pub mod protocol;
8
9pub use platform::{QqConfig, QqPlatformAdapter};