//! Language abstraction layer.
//!
//! Provides a unified interface for multi-language code analysis via the
//! [`Language`] trait. Each supported language implements this trait to
//! provide tree-sitter queries and extraction logic.
// Language implementations
// Re-exports for the crate's public API (used by lib.rs)
pub use LanguageRegistry;
pub use ;