mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-06 05:47:53 +00:00
17 lines
517 B
Rust
17 lines
517 B
Rust
use super::*;
|
|
|
|
pub fn cmds() -> impl Iterator<Item = Command> {
|
|
[
|
|
command!("thunder" => "fun_thunder"),
|
|
command!("meow" => "fun_meow"),
|
|
command!("mn" => "fun_pokemon"),
|
|
command!("fire" => "fun_fire"),
|
|
command!("freeze" => "fun_freeze"),
|
|
command!("starstorm" => "fun_starstorm"),
|
|
command!("flash" => "fun_flash"),
|
|
command!("rool" => "fun_rool"),
|
|
command!("sus" => "amogus"),
|
|
command!("error" => "fun_error"),
|
|
]
|
|
.into_iter()
|
|
}
|