fix(diagnostics): add missing crypto import for randomUUID [BUG-5]

This commit is contained in:
saravanakumardb1 2026-03-03 12:27:03 -08:00
parent 8749aa211d
commit dfeed4c10f

View File

@ -4,6 +4,7 @@
*/
import { z } from 'zod';
import crypto from 'node:crypto';
import type { DebugSessionDoc } from './types.js';
import { createSession } from './repository.js';
import { getRegisteredContainer } from '@bytelyst/cosmos';