update lib/config/config.js.

Signed-off-by: touchscale <11134128+touchscale@user.noreply.gitee.com>
This commit is contained in:
touchscale 2023-05-11 12:43:18 +00:00 committed by Gitee
parent bf040b15e2
commit c17670701a
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 11 additions and 0 deletions

View File

@ -62,6 +62,10 @@ class Cfg {
return this.getConfig('renderer');
}
get notice() {
return this.getConfig('notice');
}
/** 主人qq */
get masterQQ () {
let masterQQ = this.getConfig('other').masterQQ || []
@ -99,6 +103,13 @@ class Cfg {
return { ...def, ...config }
}
/** notice配置 */
getOther () {
let def = this.getdefSet('notice')
let config = this.getConfig('notice')
return { ...def, ...config }
}
/**
* @param app 功能
* @param name 配置文件名称