Restructure documentation layout

This commit is contained in:
Christopher F
2017-04-03 16:36:26 -04:00
parent b4c3427ed1
commit 5ade1e387b
41 changed files with 22 additions and 33 deletions

View File

@@ -0,0 +1,18 @@
[Group("admin")]
public class AdminModule : ModuleBase
{
[Group("clean")]
public class CleanModule : ModuleBase
{
// ~admin clean 15
[Command]
public async Task Default(int count = 10) => Messages(count);
// ~admin clean messages 15
[Command("messages")]
public async Task Messages(int count = 10) { }
}
// ~admin ban foxbot#0282
[Command("ban")]
public async Task Ban(IGuildUser user) { }
}