16 lines
609 B
Rust
16 lines
609 B
Rust
//! Implementation modules for incremental processing
|
|
//!
|
|
//! This module contains the split implementation of the incremental processing system
|
|
//! organized into logical submodules for better maintainability.
|
|
|
|
pub mod types {
|
|
include!("incremental_impl/types.rs");
|
|
}
|
|
|
|
// Include the original file content with a simple include to maintain all functionality
|
|
// while having it logically separated. This is a transitional approach that maintains
|
|
// backward compatibility while preparing for full modularization.
|
|
include!("incremental_original.rs");
|
|
|
|
// Re-export types for easier access
|
|
pub use types::*; |