botrs 0.13.0

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
//! Interaction-related functionality for QQ Bot
//!
//! This module provides structures and implementations for handling user interactions,
//! including button clicks, command interactions, and other interactive elements.

mod data;
mod model;
mod search;
mod types;

pub use data::{InteractionData, Resolved};
pub use model::Interaction;
pub use search::{SearchInputResolved, SearchLayout, SearchRecord, SearchRsp};
pub use types::{InteractionDataType, InteractionType};

#[cfg(test)]
mod tests;