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>; }