Skip to main content

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