vtx_sdk/modules/io/mod.rs
1//! Input/output domain.
2
3pub mod fs;
4pub mod stream;
5
6pub use fs::{
7 buffer_from_json, buffer_from_string, create_memory_buffer, head, list_objects, open_uri,
8 read_all, read_json, read_range, read_to_string, VfsBuffer, VfsObjectMeta,
9};
10pub use stream::{memory_buffer, open_file, BufferExt, StreamBuffer};