1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 00:03:56 +00:00
Files
browser/src/background.ts
2021-12-21 15:43:35 +01:00

7 lines
209 B
TypeScript

import MainBackground from "./background/main.background";
const bitwardenMain = ((window as any).bitwardenMain = new MainBackground());
bitwardenMain.bootstrap().then(() => {
// Finished bootstrapping
});