gitpod/components/ws-manager-bridge/ee/src/container-module.ts
2022-04-21 18:04:33 +05:30

14 lines
518 B
TypeScript

/**
* Copyright (c) 2020 Gitpod GmbH. All rights reserved.
* Licensed under the Gitpod Enterprise Source Code License,
* See License.enterprise.txt in the project root folder.
*/
import { ContainerModule } from "inversify";
import { WorkspaceManagerBridgeEE } from "./bridge";
import { WorkspaceManagerBridge } from "../../src/bridge";
export const containerModuleEE = new ContainerModule((bind, unbind, isBound, rebind) => {
rebind(WorkspaceManagerBridge).to(WorkspaceManagerBridgeEE).inRequestScope();
});