PluralKit/crates/command_definitions/src/misc.rs
2025-10-07 14:47:35 +00:00

10 lines
314 B
Rust

use super::*;
pub fn cmds() -> impl Iterator<Item = Command> {
[
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()
}