import { IQuery } from './query.interface'; export interface IQueryHandler { execute(query: T): Promise; }