hivemind/core/mod.rs
1//! Core domain types: events, state, errors.
2
3pub mod diff;
4pub mod enforcement;
5pub mod error;
6pub mod events;
7pub mod flow;
8pub mod graph;
9pub mod registry;
10pub mod runtime_event_projection;
11pub mod scheduler;
12pub mod scope;
13pub mod state;
14pub mod verification;
15pub mod worktree;