mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
15 lines
698 B
TypeScript
15 lines
698 B
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
import { resolveSystemProxyChannel } from "../../../common/utils/resolve-system-proxy/resolve-system-proxy-channel";
|
|
import { getRequestChannelListenerInjectable } from "../channel/channel-listeners/listener-tokens";
|
|
import resolveSystemProxyInjectable from "./resolve-system-proxy.injectable";
|
|
|
|
const resolveSystemProxyChannelResponderInjectable = getRequestChannelListenerInjectable({
|
|
channel: resolveSystemProxyChannel,
|
|
handler: (di) => di.inject(resolveSystemProxyInjectable),
|
|
});
|
|
|
|
export default resolveSystemProxyChannelResponderInjectable;
|