mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
feat: Payment system with voucher cards.
feat: Design with inversion dependency injection architecture. feat: Prettier http middleware. feat: Re-write items categories with preferred accounts.
This commit is contained in:
9
server/src/loaders/smsClient.ts
Normal file
9
server/src/loaders/smsClient.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import SMSClient from '@/services/SMSClient';
|
||||
import EasySMSGateway from '@/services/SMSClient/EasySMSClient';
|
||||
|
||||
export default () => {
|
||||
const easySmsGateway = new EasySMSGateway();
|
||||
const smsClient = new SMSClient(easySmsGateway);
|
||||
|
||||
return smsClient;
|
||||
};
|
||||
Reference in New Issue
Block a user