modules: port rmode (bulk-remove channel list-mode entries)

This commit is contained in:
Jean Chevronnet 2026-08-09 20:11:09 +00:00
parent 3186af07e8
commit e7976a76d3
2 changed files with 107 additions and 0 deletions

View file

@ -41,6 +41,7 @@ pub mod reputation;
pub mod restrictchans;
pub mod restrictcommands;
pub mod restrictmsg;
pub mod rmode;
pub mod rpc;
pub mod securelist;
pub mod securitygroups;
@ -109,5 +110,6 @@ pub fn module_commands() -> Vec<Box<dyn Command>> {
.chain(filehost::commands())
.chain(extended_isupport::commands())
.chain(tline::commands())
.chain(rmode::commands())
.collect()
}