hiling_go/db/sqlc/querier.go

18 lines
374 B
Go
Raw Normal View History

2023-09-08 22:24:58 +07:00
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.20.0
package db
import (
"context"
)
type Querier interface {
2023-09-12 17:07:03 +07:00
CreateUser(ctx context.Context, arg CreateUserParams) (User, error)
UpdatePassword(ctx context.Context, arg UpdatePasswordParams) error
UpdateUser(ctx context.Context, arg UpdateUserParams) (User, error)
2023-09-08 22:24:58 +07:00
}
var _ Querier = (*Queries)(nil)