UNPKG

cn-pay

Version:

a alipay wechat pay lib

14 lines (11 loc) 263 B
'use strict'; const Alipay = require('./src/alipay'); const Wechat = require('./src/wechat'); module.exports = class { static alipay(...args) { return new Alipay(...args); } static wechat(...args) { return new Wechat(...args); } };