using System;
namespace Discord.Commands
{
///
/// Prevents the marked module from being loaded automatically.
///
///
/// This attribute tells to ignore the marked module from being loaded
/// automatically (e.g. the method). If a non-public module marked
/// with this attribute is attempted to be loaded manually, the loading process will also fail.
///
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
public class DontAutoLoadAttribute : Attribute
{
}
}