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
//! HTTP client implementation for the QQ Guild Bot API.
//!
//! This module provides the HTTP client for making requests to the QQ Bot API,
//! handling authentication, rate limiting, and error responses.

mod client;
mod request;
mod response;

pub use client::HttpClient;

#[cfg(test)]
mod tests;