Skip to main content

kinetic/transforms/wasm/
mod.rs

1//! WASM-based map transform implementation
2//!
3//! This module provides a stateless transform that executes WASM modules
4//! for field-level transformations (rename, cast, compute, route).
5
6pub mod runtime;
7pub mod task;
8
9pub use runtime::WasmRuntime;
10pub use task::WasmTransformTask;