Index

loom-sprint-scaffoldsourcetypescript
Path: loom-sprint-scaffold/loom/src/dispatcher/index.tsRelative: loom/src/dispatcher/index.tsSubproject: loom-sprint-scaffoldCategory: other
Lines: 120Bytes: 4,364Imports: 2Exports: 9

Content Preview

  1. /**
  2. * Loop 2 dispatcher — thin worker-side barrel + concrete wire-ups.
  3. *
  4. * All logic lives in src/dispatcher/core/ (pure, injectable classes).
  5. * This file re-exports core classes and provides concrete adapters for
  6. * D1, Queue, and DO bindings.
  7. */
  8. import type { DispatchEnvelope, ModeRegistryRow, VarietyClass, GoalId } from "../types";
  9. import type {
  10. RegistryStore,
  11. QueueProducer,
  12. EscalationPoster,
  13. EscalationPayload,
  14. DispatchHandler,
  15. } from "./core/types";
  16. // ── Core class re-expor