We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0e1e58 commit 4ed7b89Copy full SHA for 4ed7b89
1 file changed
BaroBot/Bot.cs
@@ -40,9 +40,10 @@ void ConfigureServices(IServiceCollection serviceCollection)
40
.AddSingleton(new InteractionService(client))
41
.AddSingleton<EnvironmentConfig>()
42
.AddSingleton<DatabaseService>()
43
+ .AddSingleton<SteamLinkService>()
44
.AddSingleton<IEventDispatcher, EventDispatcher>()
45
.AddHostedService(p => p.GetRequiredService<DatabaseService>())
- .AddHostedService<SteamLinkService>()
46
+ .AddHostedService(p => p.GetRequiredService<SteamLinkService>())
47
.AddHostedService<MessageLoggingService>()
48
.AddHostedService<RentGeneratorService>()
49
.AddHostedService<SlashCommandService>()
0 commit comments