| 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(db DBTX) *Queries { |
| 21 | return &Queries{db: db} |
no outgoing calls
no test coverage detected