Skip to content

Commit 7823647

Browse files
committed
Remove unused service
1 parent c1e8a79 commit 7823647

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/Modix.Bot/Modules/GodboltModule.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
using System.Threading.Tasks;
44
using Discord;
55
using Discord.Interactions;
6-
using Modix.Services.AutoRemoveMessage;
76
using Modix.Services.CommandHelp;
87
using Modix.Services.Godbolt;
98

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

18-
public GodboltModule(IAutoRemoveMessageService autoRemoveMessageService, GodboltService godboltService)
16+
public GodboltModule(GodboltService godboltService)
1917
{
20-
_autoRemoveMessageService = autoRemoveMessageService;
2118
_godboltService = godboltService;
2219
}
2320

0 commit comments

Comments
 (0)