Added ephemeral responses

This commit is contained in:
2024-12-18 12:59:54 -05:00
parent a274d30521
commit 56e44442e4
13 changed files with 121 additions and 61 deletions

View File

@@ -3,11 +3,13 @@ use serenity::{
prelude::*,
};
use super::{edit_response, get_songbird, process_message};
use crate::bot::commands::{edit_response, process_message};
use super::get_songbird;
pub async fn run(ctx: &Context, command: &CommandInteraction) {
// Create the initial response
process_message(&ctx, &command).await;
process_message(&ctx, &command, false).await;
// Get the songbird manager
let manager = get_songbird(ctx).await;