(ctx context.Context, query string, args ...any)
| 196 | type queryer interface { |
| 197 | QueryRowContext(ctx context.Context, query string, args ...any) *sql.Row |
| 198 | QueryContext(ctx context.Context, query string, args ...any) (*sql.Rows, error) |
| 199 | } |
| 200 | |
| 201 | func installsFor(ctx context.Context, q queryer, id int64) ([]Install, error) { |
no outgoing calls
no test coverage detected