1
2
3
4
5
6
7
8
9
10
11
/*!
Structs that map to parts of the data model of a ROFL file.
*/

mod binheader;
mod payload;
mod segment;
pub mod section;
pub use binheader::*;
pub use payload::*;
pub use segment::*;