diff --git a/api/playback/service_base.go b/api/playback/service_base.go index ea904d6..a6e2131 100644 --- a/api/playback/service_base.go +++ b/api/playback/service_base.go @@ -21,12 +21,12 @@ const ( ) type Service struct { - allAnimeClient *allAnimeClient - httpClient *http.Client - sqlDB *sql.DB - db db.Querier - proxyTokens *proxyTokenSigner - proxyHostCache *lru.Cache[string, proxyHostCacheItem] + allAnimeClient *allAnimeClient + httpClient *http.Client + sqlDB *sql.DB + db db.Querier + proxyTokens *proxyTokenSigner + proxyHostCache *lru.Cache[string, proxyHostCacheItem] showResolution *lru.Cache[int, showResolutionCacheItem] playbackDataCache *lru.Cache[string, playbackDataCacheItem] }