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
//! Schedule-related data structures for the QQ Guild Bot API.
//!
//! This module contains structures for creating and managing channel schedules
//! in QQ Guild bots.

mod model;
mod remind;
mod wrapper;

pub use model::Schedule;
pub use remind::RemindType;
pub use wrapper::ScheduleWrapper;

#[cfg(test)]
mod tests;