/** * Operation Dispatch Utilities * * Generic dispatcher pattern for routing operations to handlers. * Reduces adapter boilerplate and provides consistent error handling. * * @module @wavespec/kit/dispatch */ export { OperationDispatcher } from "./operation-dispatcher.js"; export type { OperationHandler } from "./operation-dispatcher.js";