feat(gateway): add harness registry and fake adapter
ci/woodpecker/pr/ci Pipeline failed

This commit is contained in:
2026-08-11 19:22:27 -05:00
parent fb9f9cda5a
commit 43513c28f7
8 changed files with 1204 additions and 0 deletions
@@ -0,0 +1,11 @@
/**
* 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;