mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Replace apiBaseInjectionToken with tokens for configuration instead Signed-off-by: Sebastian Malton <sebastian@malton.name> * Use new ordering to make openNodeShellSession non-special Signed-off-by: Sebastian Malton <sebastian@malton.name> Signed-off-by: Sebastian Malton <sebastian@malton.name>
15 lines
453 B
TypeScript
15 lines
453 B
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import { getInjectionToken } from "@ogre-tools/injectable";
|
|
|
|
export const apiBaseServerAddressInjectionToken = getInjectionToken<string>({
|
|
id: "api-base-config-server-address-token",
|
|
});
|
|
|
|
export const apiBaseHostHeaderInjectionToken = getInjectionToken<string>({
|
|
id: "api-base-host-header-token",
|
|
});
|