feat: 初步完成基礎功能

This commit is contained in:
2025-01-27 16:14:31 +08:00
parent 3ff5cbc14c
commit be2e45c4fc
4 changed files with 63 additions and 0 deletions

6
util.ts Normal file
View File

@@ -0,0 +1,6 @@
export function timeout(ms: number): Promise<unknown> {
return new Promise((resolve, reject) => {
setTimeout(resolve, ms)
})
}