1
0
Fork 0
mirror of synced 2024-09-29 17:01:37 +13:00
appwrite/public/scripts/services/realtime.js

14 lines
361 B
JavaScript
Raw Normal View History

(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);