20 lines
375 B
Go
20 lines
375 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.30.0
|
|
|
|
package database
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/jackc/pgx/v5/pgtype"
|
|
)
|
|
|
|
type Querier interface {
|
|
// users.sql
|
|
GetUsernameByID(ctx context.Context, id pgtype.UUID) (string, error)
|
|
checkUserExistsByEmail(ctx context.Context, userMail string) (pgtype.UUID, error)
|
|
}
|
|
|
|
var _ Querier = (*Queries)(nil)
|