noosphere_core/data/
mod.rs

1//! Core data types in use by the Noosphere protocol. Data types in here
2//! represent the canonical structure of Noosphere data as expressed by
3//! block-encoded IPLD.
4
5mod address;
6mod authority;
7mod body_chunk;
8mod bundle;
9mod changelog;
10mod headers;
11mod link;
12mod memo;
13mod sphere;
14mod strings;
15mod versioned_map;
16
17pub use self::headers::*;
18pub use address::*;
19pub use authority::*;
20pub use body_chunk::*;
21pub use bundle::*;
22pub use changelog::*;
23pub use link::*;
24pub use memo::*;
25pub use sphere::*;
26pub use strings::*;
27pub use versioned_map::*;