From 488fba51d003bf041090cc98caa4b12b0dcb897f Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Sun, 21 Jul 2024 10:28:29 +0800 Subject: [PATCH] 1 --- scripts/cfgcheck/app.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/scripts/cfgcheck/app.js b/scripts/cfgcheck/app.js index f9ddcd0..ea55d09 100644 --- a/scripts/cfgcheck/app.js +++ b/scripts/cfgcheck/app.js @@ -1,17 +1,22 @@ const parseArgs = require('minimist'); const fs = require('fs'); const assert = require('assert'); +const constant = require('./constant'); class CfgChecker { constructor() { - this.projHash = {} + this.projHash = {}; + this.addProj(constant.PROJ_WEB3BCSPIDER); } - init() { + async init() { } + addProj(projName) { + console.log(projName); + } }