Skip to main content

agentic_reality/format/
mod.rs

1//! .areal binary file format — header, sections, footer.
2
3pub mod file;
4pub mod footer;
5pub mod header;
6pub mod sections;
7
8pub use file::{ArealReader, ArealWriter};