this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: whois user commnd

isabel 8a6cc469 55d1a920

+6 -2
+6 -2
src/commands/user/whois.rs
··· 1 1 use crate::types::Context; 2 2 use color_eyre::eyre::Result; 3 3 use poise::{ 4 - CreateReply, 5 4 serenity_prelude::{CreateEmbed, User}, 5 + CreateReply, 6 6 }; 7 7 8 8 /// Displays your or another user's info 9 - #[poise::command(slash_command)] 9 + #[poise::command( 10 + slash_command, 11 + install_context = "Guild|User", 12 + interaction_context = "Guild|BotDm|PrivateChannel" 13 + )] 10 14 pub async fn whois( 11 15 ctx: Context<'_>, 12 16 #[description = "Selected user"] user: Option<User>,