mecha10_cli/dev/
mod.rs

1//! Dev module - Support code for development mode
2//!
3//! This module provides domain types, validation, and helpers for the dev command.
4//! It follows the 3-layer architecture:
5//! - Handlers use this module for orchestration
6//! - Services use this module for business logic
7//! - This module provides reusable, testable abstractions
8//!
9//! # Architecture
10//!
11//! ```text
12//! handlers/dev.rs (orchestration)
13//!     ↓
14//! services/* (business logic)
15//!     ↓
16//! dev/ module (domain types, validation, helpers)
17//! ```
18
19pub mod lifecycle_adapter;
20pub mod node_selection;
21pub mod types;
22pub mod validation;
23
24#[cfg(test)]
25mod tests;
26
27// Re-exports for convenience (none currently needed)