(method: string, cause: unknown)
| 20 | } from "../apps/cli/src/daemon-state"; |
| 21 | |
| 22 | const fileSystemError = (method: string, cause: unknown) => |
| 23 | PlatformError.systemError({ |
| 24 | _tag: "Unknown", |
| 25 | module: "FileSystem", |
| 26 | method, |
| 27 | description: "FileSystem operation failed", |
| 28 | cause, |
| 29 | }); |
| 30 | |
| 31 | const fileSystemLayer = FileSystem.layerNoop({ |
| 32 | makeDirectory: (path, options) => |