CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
updateEventEmitter.ts14 linesDownload Raw Back to utils
1/**2 * @license3 * Copyright 2025 Google LLC4 * SPDX-License-Identifier: Apache-2.05 */6 7import { EventEmitter } from 'node:events';8 9/**10 * A shared event emitter for application-wide communication11 * between decoupled parts of the CLI.12 */13export const updateEventEmitter = new EventEmitter();14 
basant307/AI_Governance_Project · CoolFace