import type { Query } from "./Query"; export abstract class QueryHandler, TResult> { abstract execute(query: TQuery): Promise; }