new version

This commit is contained in:
ZOMBIIIIIII
2026-04-14 20:22:51 +03:00
parent 37146f7375
commit 89cb6174b7
144 changed files with 1710 additions and 17258 deletions

View File

@@ -0,0 +1,7 @@
import { AsyncLocalStorage } from 'node:async_hooks';
export const traceStore = new AsyncLocalStorage<string>();
export function getTraceId(): string {
return traceStore.getStore() || 'N/A';
}