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.
}