UNPKG
@axolo/egg-tencent-sms
Version:
latest (0.1.1)
0.1.1
0.1.0
0.0.3
0.0.2
Tencent Cloud SMS plugin for Egg.js.
github.com/axolo/egg-tencent-sms
axolo/egg-tencent-sms
@axolo/egg-tencent-sms
/
app.js
15 lines
(11 loc)
•
283 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
'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); };