chore: formatting

This commit is contained in:
2026-05-12 16:19:55 +02:00
parent 1e28e2597c
commit 8ba3926a11

View File

@@ -21,12 +21,12 @@ const (
) )
type Service struct { type Service struct {
allAnimeClient *allAnimeClient allAnimeClient *allAnimeClient
httpClient *http.Client httpClient *http.Client
sqlDB *sql.DB sqlDB *sql.DB
db db.Querier db db.Querier
proxyTokens *proxyTokenSigner proxyTokens *proxyTokenSigner
proxyHostCache *lru.Cache[string, proxyHostCacheItem] proxyHostCache *lru.Cache[string, proxyHostCacheItem]
showResolution *lru.Cache[int, showResolutionCacheItem] showResolution *lru.Cache[int, showResolutionCacheItem]
playbackDataCache *lru.Cache[string, playbackDataCacheItem] playbackDataCache *lru.Cache[string, playbackDataCacheItem]
} }