| 328 | } |
| 329 | |
| 330 | type dbPreparer struct { |
| 331 | db *sql.DB |
| 332 | } |
| 333 | |
| 334 | func (p *dbPreparer) Prepare(ctx context.Context, name, query string) error { |
| 335 | s, err := p.db.PrepareContext(ctx, query) |
nothing calls this directly
no outgoing calls
no test coverage detected