From f6fd4c9a756409a6e1775ccc401ac68001f968aa Mon Sep 17 00:00:00 2001 From: Raphael Date: Sun, 15 Feb 2026 23:43:38 +0100 Subject: [PATCH] feat(commands/mod): adding the emoji parameters --- src/commands/mod.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/commands/mod.rs b/src/commands/mod.rs index dce8945..cb6ff3c 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -1,6 +1,8 @@ use serenity::all::{CommandInteraction, Context, CreateCommand}; use sqlx::PgPool; +use crate::config::EmojiConfig; + include!("./mod_gen.rs"); #[serenity::async_trait] @@ -15,6 +17,7 @@ pub trait SlashCommand: Send + Sync { ctx: &Context, command: &CommandInteraction, database: &PgPool, + _emoji: &EmojiConfig, ) -> Result<(), serenity::Error>; }