use poise::CreateReply; 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, "IP Info", "Work in progress", "").await.unwrap()), ) .await?; Ok(()) }