(path)
| 960 | } |
| 961 | const Fs = FileSystem.layerNoop({ |
| 962 | readFileString(path) { |
| 963 | if (path in files) { |
| 964 | return Effect.succeed(files[path]) |
| 965 | } |
| 966 | return Effect.fail(notFound("readFileString")) |
| 967 | }, |
| 968 | readDirectory(_path) { |
| 969 | return Effect.fail(notFound("readDirectory")) |
| 970 | } |