mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
feat: remove Webpack and depend on nodemon. feat: refactoring expenses. feat: optimize system users with caching. feat: architecture tenant optimize.
10 lines
255 B
TypeScript
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;
|
|
};
|