Skip to main content

datasynth_core/plugins/
mod.rs

1//! Built-in plugin examples demonstrating the Plugin SDK.
2//!
3//! These plugins serve as reference implementations for custom generators,
4//! sinks, and transforms.
5
6mod csv_echo;
7mod timestamp_enricher;
8
9pub use csv_echo::CsvEchoSink;
10pub use timestamp_enricher::TimestampEnricher;