cal.pub0.org/packages/app-store/caldavcalendar/lib/CalendarService.ts

10 lines
263 B
TypeScript

import { Credential } from "@prisma/client";
import CalendarService from "@calcom/lib/CalendarService";
export default class CalDavCalendarService extends CalendarService {
constructor(credential: Credential) {
super(credential, "caldav_calendar");
}
}