mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-20 19:01:39 +00:00
15 lines
508 B
TypeScript
15 lines
508 B
TypeScript
// Exposes root-scoped path resolution helpers with fs-safe defaults.
|
|
import "./fs-safe-defaults.js";
|
|
|
|
// Root path helpers resolve writable and existing paths without allowing
|
|
// traversal outside the configured root.
|
|
export {
|
|
ensureDirectoryWithinRoot,
|
|
resolveExistingPathsWithinRoot,
|
|
resolvePathsWithinRoot,
|
|
resolvePathWithinRoot,
|
|
resolveStrictExistingPathsWithinRoot,
|
|
resolveWritablePathWithinRoot,
|
|
} from "@openclaw/fs-safe/advanced";
|
|
export { pathScope } from "@openclaw/fs-safe/advanced";
|