Expose memoryIO from limbo_core

This commit is contained in:
PThorpe92 2024-12-14 18:00:54 -05:00
parent 49f8429cc0
commit 89819eebf6
No known key found for this signature in database
GPG key ID: 66DB3FBACBDD05CC
2 changed files with 3 additions and 1 deletions

View file

@ -42,7 +42,7 @@ pub type Result<T> = std::result::Result<T, error::LimboError>;
pub use io::OpenFlags;
#[cfg(feature = "fs")]
pub use io::PlatformIO;
pub use io::{Buffer, Completion, File, WriteCompletion, IO};
pub use io::{Buffer, Completion, File, MemoryIO, WriteCompletion, IO};
pub use storage::buffer_pool::BufferPool;
pub use storage::database::DatabaseStorage;
pub use storage::pager::Page;