fxfs_platform/fuchsia/fxblob.rs
1// Copyright 2023 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5//! This module contains the implementation of FxBlob (Blobfs-on-Fxfs).
6
7pub mod blob;
8mod directory;
9pub mod mapping_provider;
10pub mod reader;
11mod writer;
12
13#[cfg(test)]
14pub mod testing;
15
16pub use crate::fxblob::directory::BlobDirectory;