signal-desktop/libtextsecure/protocol_wrapper.js

13 lines
372 B
JavaScript
Raw Normal View History

2020-10-30 15:34:04 -05:00
// Copyright 2016-2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
/* global window, textsecure, SignalProtocolStore */
2018-07-21 14:51:20 -07:00
// eslint-disable-next-line func-names
(function () {
2018-05-02 09:51:22 -07:00
window.textsecure = window.textsecure || {};
window.textsecure.storage = window.textsecure.storage || {};
2018-05-02 09:51:22 -07:00
textsecure.storage.protocol = new SignalProtocolStore();
2015-01-14 13:42:01 -10:00
})();