1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-28 12:45:45 +01:00
bitwarden-browser/src/background.ts

7 lines
209 B
TypeScript
Raw Normal View History

import MainBackground from './background/main.background';
2017-12-07 02:19:06 +01:00
const bitwardenMain = (window as any).bitwardenMain = new MainBackground();
bitwardenMain.bootstrap().then(() => {
// Finished bootstrapping
});