()
| 57 | |
| 58 | // 初始化数据库 |
| 59 | private async initDB() { |
| 60 | // 规范路径 assets/goodnight/data.json(历史 greeting/ 自动迁移) |
| 61 | const dbPath = resolvePluginAssetFile({ |
| 62 | plugin: "goodnight", |
| 63 | fileName: "data.json", |
| 64 | legacyDirs: ["greeting"], |
| 65 | legacyFiles: [{ dir: "greeting", fileName: "data.json" }], |
| 66 | }); |
| 67 | |
| 68 | // 设置默认值 |
| 69 | this.db = await JSONFilePreset<DBData>(dbPath, { groups: {} }); |
no outgoing calls
no test coverage detected