Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Avatar for KuCalc : devops.
Download
50630 views
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