feat: add GetAnime query

This commit is contained in:
2026-04-06 19:24:27 +02:00
parent d6bd34aad2
commit a042ee8bf3
3 changed files with 20 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ type Querier interface {
DeleteSession(ctx context.Context, id string) error
DeleteUserSessions(ctx context.Context, userID string) error
DeleteWatchListEntry(ctx context.Context, arg DeleteWatchListEntryParams) error
GetAnime(ctx context.Context, id int64) (Anime, error)
GetSession(ctx context.Context, id string) (Session, error)
GetUser(ctx context.Context, id string) (User, error)
GetUserByUsername(ctx context.Context, username string) (User, error)