2
0
Files

11 lines
382 B
TypeScript
Raw Permalink Normal View History

2024-08-09 00:39:27 +02:00
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
// eslint-disable-next-line @typescript-eslint/no-explicit-any
SendgridService as any,
];
export default services;