()
| 31 | type DBPool interface { |
| 32 | Acquire(ctx context.Context) (*pgxpool.Conn, error) |
| 33 | Close() |
| 34 | Exec(ctx context.Context, query string, args ...any) (pgconn.CommandTag, error) |
| 35 | Query(ctx context.Context, query string, args ...any) (pgx.Rows, error) |
| 36 | QueryRow(ctx context.Context, query string, args ...any) pgx.Row |
no outgoing calls