live-entity 0.0.7

A framework for storing entities and watching them for updates.
Documentation
mod entity;
pub use entity::*;

mod updatable;
pub use updatable::*;

mod event;
pub use event::*;

pub use live_entity_derive as derive;

mod store;
pub use store::*;

mod singleton_entity;
pub use singleton_entity::*;

#[cfg(feature = "mongodb")]
pub mod mongodb;