smc-hub
Version:
CoCalc: Backend webserver component
15 lines (11 loc) • 501 B
text/typescript
//########################################################################
// This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.
// License: AGPLv3 s.t. "Commons Clause" – see LICENSE.md for details
//########################################################################
const clients: { [id: string]: any } = {};
export function getClients() {
return clients;
}
export function pushToClient(mesg: { client_id: string }): void {
clients[mesg.client_id]?.push_to_client(mesg);
}