1//! # `ts-io` 2//! 3//! Helpers for input/output related work. 4 5extern crate alloc; 6 7mod cursor; 8mod read_file; 9 10pub use cursor::{Cursor, OutOfBounds}; 11pub use read_file::{ReadFileError, read_file, read_file_to_string};