Files
bigcapital/server/src/loaders/smsClient.ts
2021-04-03 21:16:16 +02:00

10 lines
255 B
TypeScript

import SMSClient from 'services/SMSClient';
import EasySMSGateway from 'services/SMSClient/EasySmsClient';
export default () => {
const easySmsGateway = new EasySMSGateway();
const smsClient = new SMSClient(easySmsGateway);
return smsClient;
};