(ctx context.Context, query string, args ...any)
| 30 | // in generate the implement should be *sql.DB or *sql.Conn |
| 31 | type QueryExecutor interface { |
| 32 | QueryContext(ctx context.Context, query string, args ...any) (*sql.Rows, error) |
| 33 | QueryRowContext(ctx context.Context, query string, args ...any) *sql.Row |
| 34 | } |
| 35 |
no outgoing calls