This commit is contained in:
Cogent Apps
2023-03-14 11:00:40 +00:00
parent 4a5e8c9e16
commit 645b66b988
104 changed files with 11064 additions and 1565 deletions

5
server/src/utils.ts Normal file
View File

@@ -0,0 +1,5 @@
import crypto from 'crypto';
export function randomID() {
return crypto.randomBytes(16).toString('hex');
}