zoe_state_machine/lib.rs
1//! Digital Group Assistant (DGA) Protocol
2//!
3//! A PDA-like application framework using the wire-protocol to send activity-events
4//! as messages between participants to organize state machines of organizational objects.
5
6pub mod error;
7pub mod group;
8pub mod state;
9
10#[cfg(test)]
11mod tests;
12
13pub use group::{GroupDataUpdate, GroupManager};
14pub use state::{GroupSession, GroupStateSnapshot};