move chathistory + redact + the history store into their own module file

This commit is contained in:
Jean Chevronnet 2026-08-08 22:54:52 +00:00
parent ab7188bb70
commit 431ef2f5b3
6 changed files with 386 additions and 358 deletions

View file

@ -4,6 +4,7 @@
//! than the hook bus, but lives here as its own self-contained unit.
pub mod antimixedutf8;
pub mod chathistory;
pub mod cloak;
pub mod dnsbl;
pub mod filter;
@ -38,5 +39,6 @@ pub fn module_commands() -> Vec<Box<dyn Command>> {
.chain(metadata::commands())
.chain(markread::commands())
.chain(multiline::commands())
.chain(chathistory::commands())
.collect()
}