Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Views: 39539
1
clients = {}
2
3
exports.get_clients = () ->
4
return clients
5
6
exports.push_to_client = (mesg) ->
7
clients[mesg.client_id]?.push_to_client(mesg)
8