You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- public class InfoModule : ModuleBase
- {
- // Constrain this command to Guilds
- [RequireContext(ContextType.Guild)]
- public async Task Whois(IGuildUser user) { }
-
- // Constrain this command to either Guilds or DMs
- [RequireContext(ContextType.Guild | ContextType.DM)]
- public async Task Info() { }
- }
|