1//! Sequence repository adapters. 2 3mod empty; 4mod indexed_reader; 5mod records; 6 7pub use self::{empty::Empty, indexed_reader::IndexedReader};