Browse Source

Add SocketCommandContext for Groups sample

pull/826/head
Hsu Still 8 years ago
parent
commit
cc643663d4
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      docs/guides/commands/samples/groups.cs

+ 2
- 2
docs/guides/commands/samples/groups.cs View File

@@ -1,8 +1,8 @@
[Group("admin")] [Group("admin")]
public class AdminModule : ModuleBase
public class AdminModule : ModuleBase<SocketCommandContext>
{ {
[Group("clean")] [Group("clean")]
public class CleanModule : ModuleBase
public class CleanModule : ModuleBase<SocketCommandContext>
{ {
// ~admin clean 15 // ~admin clean 15
[Command] [Command]


Loading…
Cancel
Save