cal.pub0.org/packages/lib/sync/services/index.ts

10 lines
310 B
TypeScript

import type { ISyncServices } from "../ISyncService";
import SendgridService from "./SendgridService";
const services: ISyncServices[] = [
//CloseComService, This service gets a special treatment after deciding it shouldn't get the same treatment as Sendgrid
SendgridService,
];
export default services;