mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
9 lines
181 B
Rust
9 lines
181 B
Rust
use super::*;
|
|
|
|
pub fn cmds() -> impl Iterator<Item = Command> {
|
|
[
|
|
command!("thunder" => "fun_thunder"),
|
|
command!("meow" => "fun_meow"),
|
|
]
|
|
.into_iter()
|
|
}
|