pub mod adapter;
pub mod agents;
pub mod aider;
pub mod claude;
pub mod cline;
pub mod continue_dev;
pub mod copilot;
pub mod cursor;
pub mod kiro;
pub mod windsurf;
pub use adapter::{FileDetectionResult, IndustryFileAdapter, IndustryFileDetector};
pub use agents::AgentsAdapter;
pub use aider::AiderAdapter;
pub use claude::ClaudeAdapter;
pub use cline::ClineAdapter;
pub use continue_dev::ContinueDevAdapter;
pub use copilot::CopilotAdapter;
pub use cursor::CursorAdapter;
pub use kiro::KiroAdapter;
pub use windsurf::WindsurfAdapter;
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_industry_module_exports() {
let _: &dyn IndustryFileAdapter;
}
}