Skip to content

Commit

Permalink
chore: reduce visibility of beatree imports
Browse files Browse the repository at this point in the history
  • Loading branch information
pepyakin committed Nov 25, 2024
1 parent b35cc74 commit e954c73
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions nomt/src/beatree/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@ use threadpool::ThreadPool;

use crate::io::{fsyncer::Fsyncer, IoHandle, IoPool, PagePool};

pub(crate) mod allocator;
pub(crate) mod branch;
mod allocator;
mod branch;
mod index;
mod leaf;
pub(crate) mod ops;
pub(crate) mod writeout;
pub(crate) use index::Index;
mod ops;

mod writeout;
use index::Index;

#[cfg(feature = "benchmarks")]
pub mod benches;
Expand Down

0 comments on commit e954c73

Please sign in to comment.