move classes around, name caches more consistently, add more caches
This commit is contained in:
parent
e86b37ce2a
commit
e17dcf90a1
30 changed files with 443 additions and 51 deletions
|
|
@ -1,6 +1,7 @@
|
|||
using System.Diagnostics;
|
||||
using App.Metrics;
|
||||
using Catalogger.Backend.Cache;
|
||||
using Catalogger.Backend.Cache.InMemoryCache;
|
||||
using Catalogger.Backend.Database;
|
||||
using Humanizer;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
|
@ -10,9 +11,9 @@ namespace Catalogger.Backend.Services;
|
|||
|
||||
public class MetricsCollectionService(
|
||||
ILogger logger,
|
||||
GuildCacheService guildCache,
|
||||
ChannelCacheService channelCache,
|
||||
UserCacheService userCache,
|
||||
GuildCache guildCache,
|
||||
ChannelCache channelCache,
|
||||
UserCache userCache,
|
||||
IMetrics metrics,
|
||||
IServiceProvider services) : BackgroundService
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue