Skip to content

Commit 05ee1fe

Browse files
hikejsclaude
andcommitted
fix: resolve module_inception clippy warning
- Rename orchestrator/orchestrator.rs to orchestrator/agent.rs - Update mod.rs to import from agent module - Fixes clippy::module_inception error (module has same name as containing module) All tests passing: 1480 passed Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 3ffa141 commit 05ee1fe

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

core/src/orchestrator/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,21 +54,21 @@
5454
//! # }
5555
//! ```
5656
57+
mod agent;
5758
mod config;
5859
mod control;
5960
mod events;
6061
mod handle;
61-
mod orchestrator;
6262
mod state;
6363
mod wrapper;
6464

6565
#[cfg(test)]
6666
mod tests;
6767

68+
pub use agent::AgentOrchestrator;
6869
pub use config::{OrchestratorConfig, SubAgentActivity, SubAgentConfig, SubAgentInfo};
6970
pub use control::ControlSignal;
7071
pub use events::{OrchestratorEvent, SubAgentEventPayload};
7172
pub use handle::SubAgentHandle;
72-
pub use orchestrator::AgentOrchestrator;
7373
pub use state::SubAgentState;
7474
pub use wrapper::SubAgentWrapper;

0 commit comments

Comments
 (0)