mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
14 lines
518 B
TypeScript
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();
|
|
});
|