29 lines
990 B
Go
29 lines
990 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.31.1
|
|
|
|
package db
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/jackc/pgx/v5/pgtype"
|
|
)
|
|
|
|
type Querier interface {
|
|
BindTag(ctx context.Context, arg BindTagParams) (Tag, error)
|
|
ClearTagOwner(ctx context.Context, id int64) (Tag, error)
|
|
CountTagsByOwner(ctx context.Context, ownerID pgtype.Int8) (int64, error)
|
|
CreateUser(ctx context.Context, arg CreateUserParams) (User, error)
|
|
GetTagByCode(ctx context.Context, tagCode string) (Tag, error)
|
|
GetTagByID(ctx context.Context, id int64) (Tag, error)
|
|
GetUserByEmail(ctx context.Context, email string) (User, error)
|
|
GetUserByID(ctx context.Context, id int64) (User, error)
|
|
InsertTag(ctx context.Context, tagCode string) (Tag, error)
|
|
ListTagsByOwner(ctx context.Context, ownerID pgtype.Int8) ([]Tag, error)
|
|
SetTagStatus(ctx context.Context, arg SetTagStatusParams) error
|
|
UpdateTagDetails(ctx context.Context, arg UpdateTagDetailsParams) (Tag, error)
|
|
}
|
|
|
|
var _ Querier = (*Queries)(nil)
|