Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub use self::{
    bots::{QQBotProtocol, QQSecret, SimpleBot},
    errors::{QQError, QQResult},
    wss::QQBotWebsocket,
};
pub use reqwest::{Client, Method, RequestBuilder};
pub use url::Url;

pub mod bots;
mod errors;
pub mod restful;
pub mod utils;
pub mod wss;