Skip to main content

objects/store/fs/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2//! Filesystem-based object store.
3
4mod fs_impl;
5mod fs_io;
6mod fs_pack;
7mod fs_paths;
8mod fs_store;
9
10#[cfg(test)]
11mod fs_tests;
12
13pub use fs_store::{FsStore, LooseObjectWriteMode};