// Code generated by sqlc. DO NOT EDIT. // versions: // sqlc v1.20.0 package db import ( "context" ) type Querier interface { CheckIfReviewExists(ctx context.Context, arg CheckIfReviewExistsParams) (int64, error) CreateLocation(ctx context.Context, arg CreateLocationParams) error CreateSession(ctx context.Context, arg CreateSessionParams) (UserSession, error) CreateUser(ctx context.Context, arg CreateUserParams) (User, error) GetCountImageByLocation(ctx context.Context, imageOf int32) (int64, error) GetListLocations(ctx context.Context) ([]Location, error) GetListRecentLocationsWithRatings(ctx context.Context, limit int32) ([]GetListRecentLocationsWithRatingsRow, error) GetLocationTag(ctx context.Context, targetID int32) ([]string, error) GetSession(ctx context.Context, id int32) (UserSession, error) GetUserReviewByLocation(ctx context.Context, arg GetUserReviewByLocationParams) (GetUserReviewByLocationRow, error) UpdatePassword(ctx context.Context, arg UpdatePasswordParams) error UpdateUser(ctx context.Context, arg UpdateUserParams) (User, error) } var _ Querier = (*Queries)(nil)