botrs 0.12.2

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
14
15
16
17
//! Forum-related functionality for QQ Bot
//!
//! This module provides structures and implementations for handling forum threads,
//! posts, replies, and open forum events.

mod content;
mod events;
mod open;

pub use content::{
    Content, Cover, Elem, Format, Image, Paragraph, PlatImage, PlatVideo, Text, Title, Url, Video,
};
pub use events::{Post, PostInfo, Reply, ReplyInfo, Thread, ThreadInfo};
pub use open::{ForumAuditResult, OpenThread};

#[cfg(test)]
mod tests;