修复部分问题

This commit is contained in:
dragon
2025-11-20 17:33:18 +08:00
parent dedcd58f8e
commit 35df220bea
6 changed files with 133 additions and 105 deletions

View File

@@ -1,4 +1,4 @@
async function run() {
(async ()=>{
let ws = websocket();
let shouldExit = false;
while (!shouldExit) {
@@ -17,5 +17,4 @@ async function run() {
break;
}
}
}
run().then(r => {});
})()