Skip to content

Commit

Permalink
Remove unused service
Browse files Browse the repository at this point in the history
  • Loading branch information
hez2010 committed Nov 7, 2024
1 parent c1e8a79 commit 7823647
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/Modix.Bot/Modules/GodboltModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
using System.Threading.Tasks;
using Discord;
using Discord.Interactions;
using Modix.Services.AutoRemoveMessage;
using Modix.Services.CommandHelp;
using Modix.Services.Godbolt;

Expand All @@ -12,12 +11,10 @@ namespace Modix.Bot.Modules
[ModuleHelp("Godbolt", "Commands for working with Godbolt.")]
public class GodboltModule : InteractionModuleBase
{
private readonly IAutoRemoveMessageService _autoRemoveMessageService;
private readonly GodboltService _godboltService;

public GodboltModule(IAutoRemoveMessageService autoRemoveMessageService, GodboltService godboltService)
public GodboltModule(GodboltService godboltService)
{
_autoRemoveMessageService = autoRemoveMessageService;
_godboltService = godboltService;
}

Expand Down

0 comments on commit 7823647

Please sign in to comment.