From 8d7e311a46bfca43727805f28a59aafaa1262965 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=BE=E6=96=87=E8=B1=AA?= <980287353@qq.com> Date: Fri, 17 Mar 2023 12:46:13 +0800 Subject: [PATCH] =?UTF-8?q?perf=EF=BC=9A=E6=96=B0=E5=A2=9EGlobalConfig?= =?UTF-8?q?=EF=BC=8C=E5=8F=91=E5=B8=83=E7=89=88=E6=9C=AC1.0.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 864c766..70faea8 100644 --- a/index.js +++ b/index.js @@ -1,6 +1,7 @@ const Common = require('./src/utils/Common') const Storage = require('./src/utils/Storage') const crypto = require('./src/utils/Crypto') +const GlobalConfig = require('./src/utils/GlobalConfig') const SM4 = require('./src/utils/SM4') const HttpUtil = require('./src/https/HttpUtil') @@ -10,4 +11,5 @@ module.exports = { Storage, SM4, crypto, -} \ No newline at end of file + GlobalConfig, +}