feat: add top picks for you page

This commit is contained in:
2026-06-06 13:34:18 +02:00
committed by Milas Holsting
parent 7d3aea8625
commit 77971d611c
6 changed files with 78 additions and 2 deletions

View File

@@ -134,6 +134,7 @@ type ReviewEntry struct {
type AnimeCatalogService interface {
GetCatalogSection(ctx context.Context, userID string, section string) (CatalogSectionData, error)
GetTopPickForYou(ctx context.Context, userID string) (CatalogSectionData, error)
GetTopPicksForYou(ctx context.Context, userID string) (CatalogSectionData, error)
}
type AnimeDiscoverService interface {