minor refractors, uptime removed

This commit is contained in:
2024-02-18 19:28:46 +01:00
parent 8a947926f7
commit 4e92771f8f
8 changed files with 56 additions and 17 deletions

View File

@@ -0,0 +1,11 @@
use crate::{commands::embeds::embed, Context, Error};
use poise::CreateReply;
/// Plays one of available audio effects
#[poise::command(prefix_command, slash_command, category = "Music")]
pub async fn effect(ctx: Context<'_>) -> Result<(), Error> {
ctx.send(CreateReply::default().embed(embed(ctx, "Playing an effect", "", "").await.unwrap()))
.await?;
Ok(())
}