noodles_cram/async/
io.rs

1//! Async CRAM I/O.
2
3pub mod reader;
4pub mod writer;
5
6pub use self::{reader::Reader, writer::Writer};