mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-18 13:30:48 +00:00
17 lines
413 B
TypeScript
17 lines
413 B
TypeScript
import {
|
|
createRemoteShellSandboxFsBridge,
|
|
type RemoteShellSandboxHandle,
|
|
type SandboxContext,
|
|
type SandboxFsBridge,
|
|
} from "openclaw/plugin-sdk/core";
|
|
|
|
export function createOpenShellRemoteFsBridge(params: {
|
|
sandbox: SandboxContext;
|
|
backend: RemoteShellSandboxHandle;
|
|
}): SandboxFsBridge {
|
|
return createRemoteShellSandboxFsBridge({
|
|
sandbox: params.sandbox,
|
|
runtime: params.backend,
|
|
});
|
|
}
|