import { DI_TOKENS } from "@calcom/features/di/tokens"; import { RoutingFormResponseRepository } from "@calcom/features/routing-forms/repositories/RoutingFormResponseRepository"; import { createModule } from "../di"; export const routingFormResponseRepositoryModule = createModule(); routingFormResponseRepositoryModule .bind(DI_TOKENS.ROUTING_FORM_RESPONSE_REPOSITORY) .toClass(RoutingFormResponseRepository, [DI_TOKENS.PRISMA_CLIENT]);