mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
10 lines
277 B
TypeScript
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;
|
|
};
|