forked from EllieBotDevs/elliebot
fixed some command groups incorrectly showing up as modules
This commit is contained in:
parent
09a4a69521
commit
b491f8d828
4 changed files with 14 additions and 5 deletions
src/EllieBot/Modules
|
@ -1,9 +1,11 @@
|
|||
namespace EllieBot.Modules.Administration.DangerousCommands;
|
||||
using EllieBot.Modules.Administration.DangerousCommands;
|
||||
|
||||
namespace EllieBot.Modules.Administration;
|
||||
|
||||
public partial class Administration
|
||||
{
|
||||
[Group]
|
||||
public class CleanupCommands : CleanupModuleBase
|
||||
public partial class CleanupCommands : CleanupModuleBase
|
||||
{
|
||||
private readonly ICleanupService _svc;
|
||||
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
namespace EllieBot.Modules.Utility;
|
||||
|
||||
public partial class UtilityCommands
|
||||
public partial class Utility
|
||||
{
|
||||
public class PromptCommands : EllieModule<IAiAssistantService>
|
||||
[Group]
|
||||
public partial class PromptCommands : EllieModule<IAiAssistantService>
|
||||
{
|
||||
[Cmd]
|
||||
[RequireContext(ContextType.Guild)]
|
||||
|
|
Reference in a new issue