| 169 | } |
| 170 | |
| 171 | Result<Void> DiskUtils::store(const Path& path, const BytesView& bytes) { |
| 172 | return store(path, bytes.asStringView()); |
| 173 | } |
| 174 | |
| 175 | Result<Void> DiskUtils::store(const Path& path, std::string_view bytes) { |
| 176 | auto pathStr = path.toString(); |