This commit is contained in:
Gabe Farrell 2026-01-12 13:51:12 -05:00
parent e45099c71a
commit c8b1bd3576
8 changed files with 564 additions and 0 deletions

View file

@ -30,6 +30,7 @@ type DB interface {
GetUserBySession(ctx context.Context, sessionId uuid.UUID) (*models.User, error)
GetUserByUsername(ctx context.Context, username string) (*models.User, error)
GetUserByApiKey(ctx context.Context, key string) (*models.User, error)
GetInterest(ctx context.Context, opts GetInterestOpts) ([]InterestBucket, error)
// Save