()
| 129 | plugin: "mode", |
| 130 | fileName: "config.json", |
| 131 | legacyDirs: ["messageMode"], |
| 132 | legacyFiles: [{ dir: "messageMode", fileName: "config.json" }], |
| 133 | }); |
| 134 | |
| 135 | this.db = await JSONFilePreset(dbPath, { |
| 136 | chats: {}, // per-chat 模式 |
| 137 | whitelist: [], // 白名单 chat_id[] |
| 138 | blacklist: [], // 黑名单 chat_id[] |
| 139 | globalMode: Mode.OFF, // 全局模式 |
| 140 | }); |
| 141 | } |
| 142 | |
| 143 | /* ===================== per-chat 模式读取与设置 ===================== */ |
| 144 |
no outgoing calls
no test coverage detected