File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed
src/application/command_handlers Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -132,6 +132,7 @@ pub mod environment_config;
132132pub mod errors;
133133pub mod provider;
134134pub mod ssh_credentials_config;
135+ pub mod tracker;
135136
136137// Re-export commonly used types for convenience
137138pub use environment_config:: { EnvironmentCreationConfig , EnvironmentSection } ;
Original file line number Diff line number Diff line change 1+ //! Tracker Configuration DTOs (Application Layer)
2+ //!
3+ //! This module contains DTO types for tracker configuration used in
4+ //! environment creation. These types use raw primitives (String) for
5+ //! JSON deserialization and convert to rich domain types (`SocketAddr`).
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ impl TestCommandHandler {
162162 Ok ( ( ) )
163163 }
164164
165- /// Extract port number from bind_address string (e.g., "0.0.0.0:1212" -> Some(1212))
165+ /// Extract port number from ` bind_address` string (e.g., "0.0.0.0:1212" -> Some(1212))
166166 fn extract_port_from_bind_address ( bind_address : & str ) -> Option < u16 > {
167167 bind_address
168168 . split ( ':' )
You can’t perform that action at this time.
0 commit comments