Files
calendar/packages/features/bookings/lib/handleNewBooking/test/getNewBookingHandler.ts
T

9 lines
236 B
TypeScript

async function handler(input: any) {
const handleNewBooking = (await import("@calcom/features/bookings/lib/handleNewBooking")).default;
return handleNewBooking(input);
}
export function getNewBookingHandler() {
return handler;
}