Files
rustytorch/crates/data/rtx-etl/src/incremental_impl.rs
T
2026-03-04 00:08:42 +00:00

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::*;