//! FoldDB Core - Event-driven database system
//!
//! This module contains the core components of the FoldDB system organized
//! into logical groups for better maintainability and understanding:
//!
//! - **managers/**: Core managers for different aspects of data management
//! - **services/**: Service layer components for operations
//! - **infrastructure/**: Foundation components (message bus, initialization, etc.)
//! - **orchestration/**: Coordination and orchestration components
//! - **shared/**: Common utilities and shared components
//! - **transform_manager/**: Transform system (already well-organized)
// Organized module declarations
// Core components
// Re-export key components for backwards compatibility
pub use EventMonitor;
pub use TransformOrchestrator;
pub use QueryExecutor;
pub use *;
// Re-export core components
pub use MutationManager;
// Re-export the main FoldDB struct
pub use FoldDB;