UNPKG
@axolo/egg-wechat
Version:
latest (0.0.2)
0.0.2
0.0.1
node-wechat plugin for Egg.js.
github.com/axolo/egg-wechat
axolo/egg-wechat
@axolo/egg-wechat
/
app.js
12 lines
(9 loc)
•
214 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
'use strict'
;
const
createWechat
= config => {
const
{
WechatSdk
} = config;
const
wechat =
new
WechatSdk
(config);
return
wechat; };
module
.
exports
=
app
=>
{ app.
addSingleton
(
'wechat'
, createWechat); };