Bitwarden client applications (web, browser extension, desktop, and cli)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
412 B

import NativeMessage from './nativemessage';
import IPC from './ipc';
const args = process.argv.slice(2);
class Proxy {
ipc: IPC;
nativeMessage: NativeMessage;
constructor() {
this.ipc = new IPC();
this.nativeMessage = new NativeMessage(this.ipc);
}
run() {
this.ipc.connect();
this.nativeMessage.listen();
}
}
const proxy = new Proxy();
proxy.run();