import { AsyncLocalStorage } from 'async_hooks'; export interface RequestContextStore { requestId?: string; userId?: string; } export const requestContext = new AsyncLocalStorage();