levi_core/lib.rs
1pub mod entities;
2#[cfg(not(target_arch = "wasm32"))]
3pub mod hub;
4pub mod ids;
5pub mod materialize;
6pub mod merkle;
7pub mod rank;
8pub mod resolve;
9
10pub use entities::*;
11
12/// Binaries that receive levi entities over the wire (the hub) must call
13/// this: without any referenced symbol from this crate, the linker drops its
14/// object files — including the inventory registrations for entities,
15/// commands, and sagas.
16pub fn link() {}