Skip to main content

fxfs_platform_testing/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
7mod atomic_vec;
8pub mod blob;
9mod directory;
10pub mod mapping_server;
11pub mod reader;
12mod writer;
13
14#[cfg(test)]
15pub mod testing;
16
17pub use crate::fxblob::directory::BlobDirectory;