initial 2 commit

This commit is contained in:
2023-07-09 17:49:33 +02:00
parent 732f728ff8
commit 7c11ba18fd
34 changed files with 1222 additions and 0 deletions

3
src/utils/time.ts Normal file
View File

@@ -0,0 +1,3 @@
export function wait(seconds: number): Promise<never> {
return new Promise((resolve) => setTimeout(resolve, seconds * 1000))
}