From 8ba3926a11cb7d1a576342deb7854e4899a20e54 Mon Sep 17 00:00:00 2001 From: mkelvers Date: Tue, 12 May 2026 16:19:55 +0200 Subject: [PATCH] chore: formatting --- api/playback/service_base.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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] }