mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-06 13:57:54 +00:00
10 lines
314 B
Rust
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()
|
|
}
|