Go · 465 bytes Raw Blame History
1 // Code generated by sqlc. DO NOT EDIT.
2 // versions:
3 // sqlc v1.31.1
4
5 package metadb
6
7 import (
8 "context"
9
10 "github.com/jackc/pgx/v5"
11 "github.com/jackc/pgx/v5/pgconn"
12 )
13
14 type DBTX interface {
15 Exec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)
16 Query(context.Context, string, ...interface{}) (pgx.Rows, error)
17 QueryRow(context.Context, string, ...interface{}) pgx.Row
18 }
19
20 func New() *Queries {
21 return &Queries{}
22 }
23
24 type Queries struct {
25 }
26