23 lines
763 B
Go
23 lines
763 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.20.0
|
|
|
|
package db
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Querier interface {
|
|
CreateLocation(ctx context.Context, arg CreateLocationParams) 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)
|
|
GetLocation(ctx context.Context, id int32) (GetLocationRow, error)
|
|
UpdatePassword(ctx context.Context, arg UpdatePasswordParams) error
|
|
UpdateUser(ctx context.Context, arg UpdateUserParams) (User, error)
|
|
}
|
|
|
|
var _ Querier = (*Queries)(nil)
|