huskies: merge 858
This commit is contained in:
@@ -4,13 +4,18 @@
|
||||
//! sending and editing messages, allowing the bot logic (commands, htop,
|
||||
//! notifications) to work against any chat platform — Matrix, WhatsApp, etc.
|
||||
|
||||
/// Bot command registry and dispatch — parses and routes incoming chat messages.
|
||||
pub mod commands;
|
||||
/// Chat history utilities — loading and serialising conversation history.
|
||||
pub mod history;
|
||||
pub(crate) mod lookup;
|
||||
#[cfg(test)]
|
||||
pub(crate) mod test_helpers;
|
||||
/// Rate-limit retry timers — stores and fires scheduled retry reminders.
|
||||
pub mod timer;
|
||||
/// Platform transports — pluggable backends (Matrix, Slack, WhatsApp, Discord).
|
||||
pub mod transport;
|
||||
/// Chat utility functions — shared helpers for message formatting and bot logic.
|
||||
pub mod util;
|
||||
|
||||
use async_trait::async_trait;
|
||||
|
||||
Reference in New Issue
Block a user