From c045e00b407d93d4ed2bb880490eaeca61cf92d1 Mon Sep 17 00:00:00 2001 From: mkelvers Date: Sun, 21 Jun 2026 00:37:06 +0200 Subject: [PATCH] refactor: remove command palette methods from watchlist repository --- internal/watchlist/repository.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/internal/watchlist/repository.go b/internal/watchlist/repository.go index a5443fc..823e8e6 100644 --- a/internal/watchlist/repository.go +++ b/internal/watchlist/repository.go @@ -62,14 +62,6 @@ func (r *watchlistRepository) GetUserWatchlistAnimeIDs(ctx context.Context, user return r.queries.GetUserWatchlistAnimeIDs(ctx, userID, animeIDs) } -func (r *watchlistRepository) GetCommandPaletteWatchlist(ctx context.Context, userID string, query string, limit int64) ([]db.GetUserWatchListRow, error) { - return r.queries.GetCommandPaletteWatchlist(ctx, userID, query, limit) -} - -func (r *watchlistRepository) GetCommandPaletteContinueWatching(ctx context.Context, userID string, query string, limit int64) ([]db.GetContinueWatchingEntriesRow, error) { - return r.queries.GetCommandPaletteContinueWatching(ctx, userID, query, limit) -} - func (r *watchlistRepository) GetWatchListEntry(ctx context.Context, arg db.GetWatchListEntryParams) (db.WatchListEntry, error) { return r.queries.GetWatchListEntry(ctx, arg) }