2
0
Files
cal/calcom/packages/app-store/caldavcalendar/lib/CalendarService.ts
2024-08-09 00:39:27 +02:00

9 lines
291 B
TypeScript

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