mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-03 22:47:03 +03:00
12 lines
210 B
JavaScript
12 lines
210 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* @see module:keyring/keyring
|
|
* @module keyring
|
|
*/
|
|
import Keyring from './keyring.js';
|
|
|
|
import localstore from './localstore.js';
|
|
Keyring.localstore = localstore;
|
|
|
|
export default Keyring;
|