1
0
Fork 0
mirror of synced 2024-06-30 04:00:34 +12:00
appwrite/public/scripts/services/realtime.js
2021-06-08 17:27:12 +02:00

14 lines
361 B
JavaScript

(function (window) {
"use strict";
window.ls.container.set('realtime', () => {
return {
current: null,
set: function (currentConnections) {
var scope = this;
scope.current = currentConnections;
return scope.current;
}
};
}, true, true);
})(window);