This commit is contained in:
LouisLam
2021-06-25 21:55:49 +08:00
parent c22e3050fb
commit 0a4fb45a8c
17 changed files with 1533 additions and 0 deletions

3
server/util.js Normal file
View File

@@ -0,0 +1,3 @@
exports.sleep = (ms) => {
return new Promise(resolve => setTimeout(resolve, ms));
}