PluralKit/crates/command_definitions/src/fun.rs

10 lines
181 B
Rust
Raw Normal View History

use super::*;
pub fn cmds() -> impl Iterator<Item = Command> {
2025-01-05 13:12:07 +09:00
[
command!("thunder" => "fun_thunder"),
command!("meow" => "fun_meow"),
2025-01-05 13:12:07 +09:00
]
.into_iter()
}