| 19 | ) |
| 20 | |
| 21 | type PostgresInstance struct { |
| 22 | Postgres *PQDatabase.Postgres |
| 23 | container testcontainers.Container |
| 24 | closeOnce sync.Once |
| 25 | closeErr error |
| 26 | } |
| 27 | |
| 28 | var _ database.Database = (*PostgresInstance)(nil) |
| 29 |
nothing calls this directly
no outgoing calls
no test coverage detected