Files
calendar/packages/trpc/server/routers/viewer/slots/getSchedule.handler.ts
T
sean-brydonandGitHub e89211782c fix: calcom trpc circle deps slots handlers (#19896)
* remove validator file and include inside handler

* fixes slots and handler circle dep

* fix type in tests
2025-03-10 11:29:51 +00:00

7 lines
231 B
TypeScript

import type { GetScheduleOptions } from "./types";
import { getAvailableSlots } from "./util";
export const getScheduleHandler = async ({ ctx, input }: GetScheduleOptions) => {
return await getAvailableSlots({ ctx, input });
};