Fold the fragmented distribution swim/routing/gossip tests into swim_core, routing, and swim_actor. Prune the dashboard tui and command surfaces. Add mvp-system actors (node_agent, orchestrator, stage_controller), the local_e2e harness, and gpu worker e2e. Signed-off-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
15 lines
551 B
Rust
15 lines
551 B
Rust
//! swactor actor shells for the MVP system local E2E stack.
|
|
//!
|
|
//! Each actor module owns its message type. Pure state machines remain in the
|
|
//! existing domain modules; actors translate mailbox messages into those cores and
|
|
//! report emitted commands/events back through actor messages.
|
|
|
|
pub mod codec;
|
|
pub mod node_agent;
|
|
pub mod orchestrator;
|
|
pub mod stage_controller;
|
|
|
|
pub fn register_mvp_actor_codecs(registry: &mut swactor_transport::CodecRegistry) {
|
|
node_agent::register_codecs(registry);
|
|
orchestrator::register_codecs(registry);
|
|
}
|