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