(ctx context.Context, sql string, args ...interface{})
| 14 | // PgxQuery interface allows Query that returns pgx.Rows. |
| 15 | type PgxQuery interface { |
| 16 | Query(ctx context.Context, sql string, args ...interface{}) (pgx.Rows, error) |
| 17 | } |
| 18 | |
| 19 | // PgxExec interface allows pgx Exec functionality. |
no outgoing calls