vortex_io/file/mod.rs
1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
4mod buffer;
5mod driver;
6#[cfg(feature = "object_store")]
7pub mod object_store;
8mod read;
9#[cfg(not(target_arch = "wasm32"))]
10mod std_file;
11
12pub(crate) use driver::*;
13pub use read::*;