This commit is contained in:
2025-05-24 01:47:40 +09:00
commit 09d97cbb0b
1594 changed files with 184634 additions and 0 deletions

5
server/utils.ts Normal file
View File

@@ -0,0 +1,5 @@
import path from 'node:path'
import { fileURLToPath } from 'node:url'
export const resolve = (p: string) =>
path.resolve(path.dirname(fileURLToPath(import.meta.url)), p)