levi-core 0.1.3

Entities, status resolution, and ranking for levi, the git-aware issue tracker
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod entities;
#[cfg(not(target_arch = "wasm32"))]
pub mod hub;
pub mod ids;
pub mod materialize;
pub mod rank;
pub mod resolve;

pub use entities::*;

/// Binaries that receive levi entities over the wire (the hub) must call
/// this: without any referenced symbol from this crate, the linker drops its
/// object files — including the inventory registrations for entities,
/// commands, and sagas.
pub fn link() {}