From f0f9337c31487f79ff7b4dfff834a9f9d2560e56 Mon Sep 17 00:00:00 2001 From: mkelvers Date: Sun, 21 Jun 2026 00:37:10 +0200 Subject: [PATCH] refactor: remove command palette methods from watchlist service --- internal/watchlist/service.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/internal/watchlist/service.go b/internal/watchlist/service.go index 25e8864..8cb162a 100644 --- a/internal/watchlist/service.go +++ b/internal/watchlist/service.go @@ -97,14 +97,6 @@ func (s *watchlistService) GetWatchlistMap(ctx context.Context, userID string, a return watchlistMap, nil } -func (s *watchlistService) GetCommandPaletteWatchlist(ctx context.Context, userID string, query string, limit int64) ([]domain.UserWatchListRow, error) { - return s.repo.GetCommandPaletteWatchlist(ctx, userID, query, limit) -} - -func (s *watchlistService) GetCommandPaletteContinueWatching(ctx context.Context, userID string, query string, limit int64) ([]db.GetContinueWatchingEntriesRow, error) { - return s.repo.GetCommandPaletteContinueWatching(ctx, userID, query, limit) -} - func (s *watchlistService) GetWatchListEntry(ctx context.Context, userID string, animeID int64) (db.WatchListEntry, error) { return s.repo.GetWatchListEntry(ctx, db.GetWatchListEntryParams{ UserID: userID,