(uuid: string)
| 1385 | |
| 1386 | // 运行脚本 |
| 1387 | async runScript(uuid: string) { |
| 1388 | const res = await this.script.getScriptRunResourceByUUID(uuid); |
| 1389 | if (!res) { |
| 1390 | return; |
| 1391 | } |
| 1392 | return await runScript(this.msgSender, res); |
| 1393 | } |
| 1394 | |
| 1395 | scriptMatchEntry( |
| 1396 | scriptRes: ScriptRunResource, |
nothing calls this directly
no test coverage detected