fix: added wip info for some commands

This commit is contained in:
2024-08-13 15:20:54 +02:00
parent aa215daf28
commit 2f4045d4a9
4 changed files with 16 additions and 8 deletions

View File

@@ -5,8 +5,10 @@ use crate::{commands::embeds::embed, Context, Error};
/// Shows IP information
#[poise::command(prefix_command, slash_command, category = "Tools")]
pub async fn ip(ctx: Context<'_>) -> Result<(), Error> {
ctx.send(CreateReply::default().embed(embed(ctx, "", "", "").await.unwrap()))
.await?;
ctx.send(
CreateReply::default().embed(embed(ctx, "IP Info", "Work in progress", "").await.unwrap()),
)
.await?;
Ok(())
}