index.js 350 字节
Newer Older
VK1688's avatar
VK1688 已提交
1 2 3 4 5
const wxpay = require('./wxpay');
const alipay = require('./alipay');
const common = require('./common');
const qrcode = require('./qrcode'); // 此源码为npm i qrcode的压缩版本
const crypto = require('./crypto');
VK1688's avatar
VK1688 已提交
6
const jsonwebtoken = require('./jsonwebtoken');
VK1688's avatar
VK1688 已提交
7 8 9 10 11 12

module.exports = {
	wxpay,
	alipay,
	common,
	qrcode,
VK1688's avatar
VK1688 已提交
13 14
	crypto,
	jsonwebtoken
VK1688's avatar
VK1688 已提交
15
};