21 lines
424 B
C#
21 lines
424 B
C#
using Discord.Modules;
|
|
|
|
namespace NadekoBot.Modules
|
|
{
|
|
class Administration : DiscordModule
|
|
{
|
|
public Administration() : base() {
|
|
commands.Add(new HelpCommand());
|
|
}
|
|
|
|
public override void Install(ModuleManager manager)
|
|
{
|
|
manager.CreateCommands("", cgb =>
|
|
{
|
|
commands.ForEach(com => com.Init(cgb));
|
|
});
|
|
|
|
}
|
|
}
|
|
}
|