pub mod read_until_index_found;
#[doc = r#"
The async BufReader utils prelude.
The purpose of this module is to alleviate imports for all of the async BufReader utils traits
by adding a glob import to the top of heavy modules:
```
# #![allow(unused_imports)]
use async_buf_reader_utils::prelude::*;
```
"#]
pub mod prelude {
#[doc(no_inline)]
pub use crate::read_until_index_found::*;
}