()
| 69 | this.db = await JSONFilePreset(dbPath, { |
| 70 | subscriptions: [], |
| 71 | lastMessages: {} // 存储最后发送的消息ID,用于删除 |
| 72 | }); |
| 73 | } |
| 74 | |
| 75 | // 加载贴纸包 |
| 76 | private async loadStickerSet() { |
| 77 | try { |
| 78 | const client = await getGlobalClient(); |
| 79 | if (!client) return; |
| 80 |
no outgoing calls
no test coverage detected