import { randomBytes } from "node:crypto"; export function createId(prefix: string): string { return `${prefix}_${Date.now().toString(36)}_${randomBytes(5).toString("hex")}`; }