| 1 | // Execution facade passed into backends. Locally it is the plain exec module; |
| 2 | // remote agents get the same shape, so every backend works unchanged on either |
| 3 | // side of an ssh hop. |
| 4 | import * as exec from "./exec.mjs"; |
| 5 | export { exec }; |
| 6 | export default exec; |
| 7 |