modules: port customtitle (TITLE vanity-title command + WHOIS line + vhost)

This commit is contained in:
Jean Chevronnet 2026-08-09 20:13:07 +00:00
parent e7976a76d3
commit aa384d56f2
3 changed files with 93 additions and 0 deletions

View file

@ -14,6 +14,7 @@ pub mod cloak;
pub mod cloudflare_challenge;
pub mod connectban;
pub mod connflood;
pub mod customtitle;
pub mod denychans;
pub mod disable;
pub mod dnsbl;
@ -111,5 +112,6 @@ pub fn module_commands() -> Vec<Box<dyn Command>> {
.chain(extended_isupport::commands())
.chain(tline::commands())
.chain(rmode::commands())
.chain(customtitle::commands())
.collect()
}