feat: add top picks for you page

This commit is contained in:
2026-06-06 13:34:18 +02:00
parent ede17ce8aa
commit b85b29aa13
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 {