modules: port ircv3_extended_isupport (draft/extended-isupport cap + ISUPPORT command, draft/isupport batch)

This commit is contained in:
Jean Chevronnet 2026-08-09 19:52:52 +00:00
parent f48be3413d
commit bda7eecfc2
4 changed files with 116 additions and 23 deletions

View file

@ -15,6 +15,7 @@ pub mod connectban;
pub mod connflood;
pub mod denychans;
pub mod dnsbl;
pub mod extended_isupport;
pub mod extjwt;
pub mod filehost;
pub mod filter;
@ -97,5 +98,6 @@ pub fn module_commands() -> Vec<Box<dyn Command>> {
.chain(cloudflare_challenge::commands())
.chain(extjwt::commands())
.chain(filehost::commands())
.chain(extended_isupport::commands())
.collect()
}