···77/// Make the kitty say something :3
88#[poise::command(slash_command, guild_only)]
99pub async fn kittysay(ctx: Context<'_>, #[description = "speak"] input: String) -> Result<()> {
1010- print!("Please enter your message: ");
1111-1210 let re = Regex::new(r"[^:a-zA-Z0-9\s]").unwrap();
1311 let sanitized_input = re.replace_all(&input, "").to_string();
1412
+1-3
src/commands/mod.rs
···11pub mod bot;
22-pub mod kittysay;
33-pub mod ping;
22+pub mod fun;
43pub mod user;
55-pub mod dice;