move rehash to its own coremod; reload-safe rehash (keeps running config on read failure) + snotice + servermask

This commit is contained in:
Jean Chevronnet 2026-08-08 00:16:34 +00:00
parent dbdeb97392
commit fceafa8064
4 changed files with 101 additions and 28 deletions

View file

@ -9,6 +9,7 @@ pub mod core_info;
pub mod core_message;
pub mod core_mode;
pub mod core_oper;
pub mod core_rehash;
pub mod core_user;
pub mod core_watch;
@ -24,6 +25,7 @@ pub fn command_table() -> HashMap<&'static str, Box<dyn Command>> {
.chain(core_message::commands())
.chain(core_mode::commands())
.chain(core_oper::commands())
.chain(core_rehash::commands())
.chain(core_info::commands())
.chain(core_extra::commands())
.chain(core_watch::commands())