🎨 Removed unused dependency injected services arguments in constructor

This commit is contained in:
2025-06-21 14:32:59 +08:00
parent eadf25f389
commit 1baa3109bc
12 changed files with 9 additions and 18 deletions

View File

@ -6,7 +6,7 @@ using NodaTime;
namespace DysonNetwork.Sphere.Publisher;
public class PublisherService(AppDatabase db, FileService fs, FileReferenceService fileRefService, ICacheService cache)
public class PublisherService(AppDatabase db, FileReferenceService fileRefService, ICacheService cache)
{
private const string UserPublishersCacheKey = "accounts:{0}:publishers";