LotteryAutoScript/lib/GlobalVar.js
shanmite e5ea89c0af fix: 本地运行时多账号无效
将GlobalVal.json文件改为动态JS文件
2021-05-04 10:51:27 +08:00

15 lines
236 B
JavaScript

let GlobalVar = {
inner: {},
get(key) {
return this.inner[key]
},
set(key, value) {
this.inner[key] = value
},
updateAll(inner) {
this.inner = inner;
}
};
module.exports = GlobalVar;