32 lines
601 B
Go
32 lines
601 B
Go
|
// Code generated by sqlc. DO NOT EDIT.
|
||
|
// versions:
|
||
|
// sqlc v1.13.0
|
||
|
|
||
|
package database
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"database/sql"
|
||
|
)
|
||
|
|
||
|
type DBTX interface {
|
||
|
ExecContext(context.Context, string, ...interface{}) (sql.Result, error)
|
||
|
PrepareContext(context.Context, string) (*sql.Stmt, error)
|
||
|
QueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)
|
||
|
QueryRowContext(context.Context, string, ...interface{}) *sql.Row
|
||
|
}
|
||
|
|
||
|
func New(db DBTX) *Queries {
|
||
|
return &Queries{db: db}
|
||
|
}
|
||
|
|
||
|
type Queries struct {
|
||
|
db DBTX
|
||
|
}
|
||
|
|
||
|
func (q *Queries) WithTx(tx *sql.Tx) *Queries {
|
||
|
return &Queries{
|
||
|
db: tx,
|
||
|
}
|
||
|
}
|