(text: string)
| 101 | return false; |
| 102 | } |
| 103 | |
| 104 | // HTML转义函数(必需) |
| 105 | |
| 106 | // 主命令处理 |
| 107 | private async handleAffCommand(msg: Api.Message): Promise<void> { |
| 108 | try { |
| 109 | if (!this.db) return; |
| 110 | const text = msg.text || ""; |
| 111 | const parts = text.trim().split(/\s+/); |
no outgoing calls
no test coverage detected