Skip to content

Commit

Permalink
Merge pull request #20 from rustbase/bugfix/public-modules
Browse files Browse the repository at this point in the history
fix: adding modules to public
  • Loading branch information
peeeuzin authored Jan 24, 2023
2 parents 4be3488 + 28ec30b commit eb77992
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
mod bloom;
pub mod bloom;
mod dustdata;
mod storage;
pub mod storage;

pub use self::{
dustdata::DustData, dustdata::DustDataConfig, dustdata::Error, dustdata::ErrorCode,
Expand Down
6 changes: 3 additions & 3 deletions src/storage/lsm/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ use crate::dustdata::{Error, ErrorCode, Result};

use self::snapshots::Snapshot;

mod filter;
mod index;
pub mod filter;
pub mod index;
pub mod snapshots;
mod sstable;
pub mod sstable;
mod writer;

#[derive(Clone, Debug)]
Expand Down
2 changes: 1 addition & 1 deletion src/storage/mod.rs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pub mod lsm;
pub mod lsm;

0 comments on commit eb77992

Please sign in to comment.