PostgreSQL is an implementation of the Database interface using PostgreSQL
| 19 | |
| 20 | // PostgreSQL is an implementation of the Database interface using PostgreSQL |
| 21 | type PostgreSQL struct { |
| 22 | pool *pgxpool.Pool |
| 23 | } |
| 24 | |
| 25 | // Executor is an interface for executing queries (satisfied by both pgx.Tx and pgxpool.Pool) |
| 26 | type Executor interface { |
nothing calls this directly
no outgoing calls
no test coverage detected