You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
375 B
JavaScript
20 lines
375 B
JavaScript
/* global window */
|
|
|
|
// eslint-disable-next-line func-names
|
|
(function() {
|
|
window.libloki = window.libloki || {};
|
|
|
|
function getGuardNodes() {
|
|
return window.Signal.Data.getGuardNodes();
|
|
}
|
|
|
|
function updateGuardNodes(nodes) {
|
|
return window.Signal.Data.updateGuardNodes(nodes);
|
|
}
|
|
|
|
window.libloki.storage = {
|
|
getGuardNodes,
|
|
updateGuardNodes,
|
|
};
|
|
})();
|