implement server config commands

This commit is contained in:
dusk 2025-10-07 14:27:21 +00:00
parent 0f26a69f1b
commit 1627e25268
No known key found for this signature in database
5 changed files with 350 additions and 215 deletions

View file

@ -31,6 +31,7 @@ pub fn all() -> impl Iterator<Item = Command> {
.chain(group::cmds())
.chain(member::cmds())
.chain(config::cmds())
.chain(server_config::cmds())
.chain(fun::cmds())
.chain(switch::cmds())
.chain(random::cmds())
@ -40,6 +41,7 @@ pub fn all() -> impl Iterator<Item = Command> {
.chain(message::cmds())
.chain(import_export::cmds())
.chain(admin::cmds())
.chain(misc::cmds())
.map(|cmd| {
cmd.hidden_flag(("plaintext", ["pt"]))
.hidden_flag(("raw", ["r"]))