Initial split of the modules
This commit is contained in:
14
NadekoBot.Core/Common/Attributes/NadekoModuleAttribute.cs
Normal file
14
NadekoBot.Core/Common/Attributes/NadekoModuleAttribute.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using Discord.Commands;
|
||||
|
||||
namespace NadekoBot.Common.Attributes
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Class)]
|
||||
sealed class NadekoModuleAttribute : GroupAttribute
|
||||
{
|
||||
public NadekoModuleAttribute(string moduleName) : base(moduleName)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user