implement misc commands

This commit is contained in:
dusk 2025-10-07 14:47:35 +00:00
parent 1627e25268
commit f14901a4e3
No known key found for this signature in database
2 changed files with 8 additions and 3 deletions

View file

@ -1,5 +1,10 @@
use super::*;
pub fn cmds() -> impl Iterator<Item = Command> {
[].into_iter()
[
command!("invite" => "invite").help("Gets a link to invite PluralKit to other servers"),
command!(("stats", ["status"]) => "stats")
.help("Shows statistics and information about PluralKit"),
]
.into_iter()
}