cleanup messages

This commit is contained in:
2024-10-13 17:38:18 -04:00
parent 0d39cb6a01
commit 1c6ed2cba4
7 changed files with 14 additions and 14 deletions

View File

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