import { IRequestHandler } from './i-request-handler.interface';
/**
 * Offers the necessary functionality to create a new request handler.
 */
export interface IRequestHandlerFactory {
    /**
     * Creates a new request handler.
     */
    create(): IRequestHandler;
}
