Files
calendar/packages/lib/di/modules/RoutingFormResponse.ts
T

10 lines
408 B
TypeScript

import { DI_TOKENS } from "@calcom/lib/di/tokens";
import { RoutingFormResponseRepository } from "@calcom/lib/server/repository/formResponse";
import { createModule } from "../di";
export const routingFormResponseRepositoryModule = createModule();
routingFormResponseRepositoryModule
.bind(DI_TOKENS.ROUTING_FORM_RESPONSE_REPOSITORY)
.toClass(RoutingFormResponseRepository, [DI_TOKENS.PRISMA_CLIENT]);