返回 CodeWhale
remote-runtime.mjs
根目录 / crates / tui / plugins / computer-use / src / remote-runtime.mjs
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
7 lines Plain Text