import { AsyncLocalStorage } from 'node:async_hooks'; export interface RequestContext { requestId: string; userId?: string; } export const requestContextStorage = new AsyncLocalStorage(); export function getRequestId(): string { return requestContextStorage.getStore()?.requestId ?? 'unknown'; }