12 lines
483 B
TypeScript
12 lines
483 B
TypeScript
/**
|
|
* Nest dependency-injection tokens for the harness-neutral registry and service.
|
|
*
|
|
* String tokens follow the existing Gateway convention (see `memory/memory.tokens.ts`)
|
|
* and remain valid Nest `InjectionToken`s for `@Inject(...)`.
|
|
*/
|
|
export const HARNESS_REGISTRY = 'HARNESS_REGISTRY' as const;
|
|
export const HARNESS_SERVICE = 'HARNESS_SERVICE' as const;
|
|
|
|
export type HarnessRegistryToken = typeof HARNESS_REGISTRY;
|
|
export type HarnessServiceToken = typeof HARNESS_SERVICE;
|