import type { CorrelationId } from "@awp/contracts";
export interface GatewayHealthContract {
  readonly ok: true;
  readonly correlationId?: CorrelationId;
}
export const gatewayBoundary = "transport-only" as const;
