Files
bigcapital/packages/server/src/loaders/smsClient.ts
2023-02-03 11:57:50 +02:00

10 lines
277 B
TypeScript

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