Skip to content

Commit

Permalink
chore(facade): harden API surfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
dckc authored and turadg committed Jul 11, 2024
1 parent 2405c8f commit f10c9c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/orchestration/src/facade.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,11 @@ export const makeOrchestrationFacade = ({
]),
);

return {
return harden({
adminAsyncFlow,
orchestrate,
orchestrateAll,
};
});
};
harden(makeOrchestrationFacade);
/** @typedef {ReturnType<typeof makeOrchestrationFacade>} OrchestrationFacade */

0 comments on commit f10c9c1

Please sign in to comment.