@@ -19,25 +19,27 @@ pub type CommandResult = Result<(), Box<dyn std::error::Error>>;
1919
2020// Add shared command context
2121#[ derive( Clone ) ]
22+ #[ allow( dead_code) ]
2223pub struct CommandContext {
2324 pub flows : Arc < crate :: flows:: CollectionManager > ,
2425}
2526
2627// Add shared command traits
28+ #[ allow( dead_code) ]
2729pub trait Command {
2830 fn name ( & self ) -> & ' static str ;
2931 fn description ( & self ) -> & ' static str ;
3032
3133 fn execute ( & self , ctx : & CommandContext , args : & [ String ] ) -> CommandResult ;
3234}
3335
34- // Re-export
35- pub use config:: ConfigCommand ;
36- pub use test:: TestCommand ;
37- pub use discover:: DiscoverCommand ;
38- pub use predict:: PredictCommand ;
39- pub use ask:: AskCommand ;
40- pub use generate:: GenerateCommand ;
41- pub use monitor:: MonitorCommand ;
42- pub use explain:: ExplainCommand ;
43- pub use fix:: FixCommand ;
36+ // Re-export (commented out unused imports)
37+ // pub use config::ConfigCommand;
38+ // pub use test::TestCommand;
39+ // pub use discover::DiscoverCommand;
40+ // pub use predict::PredictCommand;
41+ // pub use ask::AskCommand;
42+ // pub use generate::GenerateCommand;
43+ // pub use monitor::MonitorCommand;
44+ // pub use explain::ExplainCommand;
45+ // pub use fix::FixCommand;
0 commit comments