UNPKG

@axolo/egg-tencent-sms

Version:

Tencent Cloud SMS plugin for Egg.js.

15 lines (11 loc) 283 B
'use strict'; const Sms = require('./lib/sms'); const createSms = options => { const sms = new Sms({ ...options }); const { tencentCloud } = options; sms.tencentCloud = tencentCloud; return sms; }; module.exports = app => { app.addSingleton('tencentSms', createSms); };