storkit: merge 417_refactor_split_matrix_bot_rs_into_focused_modules

This commit is contained in:
dave
2026-03-28 08:30:01 +00:00
parent 73304f08ac
commit 665c036a56
9 changed files with 1973 additions and 1926 deletions
@@ -0,0 +1,14 @@
pub mod context;
pub mod format;
pub mod history;
pub mod mentions;
pub mod messages;
pub mod run;
pub mod verification;
// Re-export all public types so existing import paths continue to work.
pub use format::markdown_to_html;
pub use history::{
ConversationEntry, ConversationHistory, ConversationRole, RoomConversation, save_history,
};
pub use run::run_bot;