From 899e939e832c86f8afda0e53b46650e649fbc801 Mon Sep 17 00:00:00 2001 From: zobweyt Date: Mon, 10 Jun 2024 23:50:01 +0300 Subject: [PATCH] Remove TODOs --- src/Giveaways/Common/ModuleBase.cs | 5 +---- src/Giveaways/Modules/GeneralModule.cs | 2 -- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/src/Giveaways/Common/ModuleBase.cs b/src/Giveaways/Common/ModuleBase.cs index cee7c8a..d4fadad 100644 --- a/src/Giveaways/Common/ModuleBase.cs +++ b/src/Giveaways/Common/ModuleBase.cs @@ -5,7 +5,4 @@ namespace Giveaways; /// /// An implementation of the for this solution. /// -public abstract class ModuleBase : InteractionModuleBase -{ - // TODO: Define your common dependencies here. -} +public abstract class ModuleBase : InteractionModuleBase; diff --git a/src/Giveaways/Modules/GeneralModule.cs b/src/Giveaways/Modules/GeneralModule.cs index 69f3d8e..8d82f7a 100644 --- a/src/Giveaways/Modules/GeneralModule.cs +++ b/src/Giveaways/Modules/GeneralModule.cs @@ -32,6 +32,4 @@ public async Task AboutAsync() await RespondAsync(embed: embed, components: components); } - - // TODO: Define new general commands here. }