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.

groups.cs 357 B

123456789101112131415
  1. [Module("admin")]
  2. public class AdminModule
  3. {
  4. [Group("mod")]
  5. public class ModerationGroup
  6. {
  7. // ~admin mod ban foxbot#0282
  8. [Command("ban")]
  9. public async Task Ban(IUserMessage msg, IGuildUser user) { }
  10. }
  11. // ~admin clean 100
  12. [Command("clean")]
  13. public async Task Clean(IUserMessage msg, int count = 100) { }
  14. }