From 2668582df4abd8514db48742d6491c2524b3b798 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Sun, 21 Jul 2024 10:25:57 +0800 Subject: [PATCH] 1 --- scripts/cfgcheck/app.js | 2 ++ scripts/cfgcheck/constant.js | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 scripts/cfgcheck/constant.js diff --git a/scripts/cfgcheck/app.js b/scripts/cfgcheck/app.js index 9bfbfa3..f9ddcd0 100644 --- a/scripts/cfgcheck/app.js +++ b/scripts/cfgcheck/app.js @@ -5,12 +5,14 @@ const assert = require('assert'); class CfgChecker { constructor() { + this.projHash = {} } init() { } + } (new CfgChecker).init(); diff --git a/scripts/cfgcheck/constant.js b/scripts/cfgcheck/constant.js new file mode 100644 index 0000000..a85d098 --- /dev/null +++ b/scripts/cfgcheck/constant.js @@ -0,0 +1,3 @@ +const PROJ_WEB3BCSPIDER = 'Web3BcSpider'; + +exports.PROJ_WEB3BCSPIDER = PROJ_WEB3BCSPIDER;