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.

CommandExtensions.cs 228 B

12345678
  1. namespace Discord.Commands
  2. {
  3. public static class CommandExtensions
  4. {
  5. public static CommandService Commands(this DiscordClient client, bool required = true)
  6. => client.GetService<CommandService>(required);
  7. }
  8. }