UNPKG

egg-old-pay

Version:

sandan store pay inclued wechat alipay vista

16 lines (12 loc) 314 B
'use strict'; const tenpay = require('./wechat/index'); const Alipay = require('./alipay'); module.exports = app => { const config = app.config.sandanPay; const wechat = new tenpay(config.wechat); const alipay = new Alipay(config.alipay); app.sandanPay = { wechat: wechat, alipay: alipay } };