1
0
Fork 0
mirror of synced 2024-07-02 05:00:33 +12: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);