PluralKit/crates/command_definitions/src/misc.rs

11 lines
314 B
Rust
Raw Normal View History

2025-10-07 14:27:21 +00:00
use super::*;
2025-10-07 14:27:21 +00:00
pub fn cmds() -> impl Iterator<Item = Command> {
2025-10-07 14:47:35 +00:00
[
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()
2025-10-07 14:27:21 +00:00
}