* deployment * update imports * booking report * update import paths * watch list * watch list * api key * api key * selected slots * wip * event type translation * work flow step * booking reference * fix tests * fix * fix * migrate * wip * address * fix
10 lines
421 B
TypeScript
10 lines
421 B
TypeScript
import { DI_TOKENS } from "@calcom/features/di/tokens";
|
|
import { PrismaSelectedSlotRepository } from "@calcom/features/selectedSlots/repositories/PrismaSelectedSlotRepository";
|
|
|
|
import { createModule } from "../di";
|
|
|
|
export const selectedSlotsRepositoryModule = createModule();
|
|
selectedSlotsRepositoryModule
|
|
.bind(DI_TOKENS.SELECTED_SLOT_REPOSITORY)
|
|
.toClass(PrismaSelectedSlotRepository, [DI_TOKENS.PRISMA_CLIENT]);
|