UNPKG

@axolo/egg-wechat-pay

Version:
14 lines (10 loc) 287 B
'use strict'; const WxPay = require('@axolo/node-wechat-pay'); const createWechatPay = config => { const { WechatPay = WxPay } = config; const wechatPay = new WechatPay(config); return wechatPay; }; module.exports = app => { app.addSingleton('wechatPay', createWechatPay); };