modules: port ircv3_extjwt (EXTJWT command, native HS256 tokens)

This commit is contained in:
Jean Chevronnet 2026-08-09 11:59:38 +00:00
parent caf87ed911
commit 9dce3bde92
2 changed files with 154 additions and 0 deletions

View file

@ -15,6 +15,7 @@ pub mod connectban;
pub mod connflood;
pub mod denychans;
pub mod dnsbl;
pub mod extjwt;
pub mod filter;
pub mod flood;
pub mod hashident;
@ -80,5 +81,6 @@ pub fn module_commands() -> Vec<Box<dyn Command>> {
.chain(account_registration::commands())
.chain(recaptcha::commands())
.chain(cloudflare_challenge::commands())
.chain(extjwt::commands())
.collect()
}