()
| 26 | export const modelInitialized = new Promise(resolve => modelInitDone = resolve); |
| 27 | |
| 28 | export async function init() { |
| 29 | pwdCache.initSession(); |
| 30 | await defaults.init(); |
| 31 | await prefs.init(); |
| 32 | pwdCache.init(); |
| 33 | initKeyBinding(); |
| 34 | initOpenPGP(); |
| 35 | await trustKey.init(); |
| 36 | modelInitDone(); |
| 37 | } |
| 38 | |
| 39 | export function initOpenPGP() { |
| 40 | pgpConfig.commentString = 'https://mailvelope.com'; |
nothing calls this directly
no test coverage detected