Files
bigcapital/server/src/loaders/smsClient.ts
Ahmed Bouhuolia a22c8395f3 feat: remove path alias.
feat: remove Webpack and depend on nodemon.
feat: refactoring expenses.
feat: optimize system users with caching.
feat: architecture tenant optimize.
2020-09-15 00:51:39 +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;
};