2026-06-24 09:30:29 +00:00
|
|
|
//! 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;
|
2026-06-25 12:30:18 +00:00
|
|
|
pub mod provisioner;
|
2026-06-24 09:30:29 +00:00
|
|
|
pub mod stage_controller;
|
|
|
|
|
|
|
|
|
|
pub fn register_mvp_actor_codecs(registry: &mut swactor_transport::CodecRegistry) {
|
|
|
|
|
node_agent::register_codecs(registry);
|
|
|
|
|
orchestrator::register_codecs(registry);
|
2026-06-25 12:30:18 +00:00
|
|
|
provisioner::register_codecs(registry);
|
2026-06-24 09:30:29 +00:00
|
|
|
}
|