datasynth_output/
lib.rs

1//! # synth-output
2//!
3//! Output sinks for CSV, Parquet, JSON, and streaming formats.
4
5pub mod control_export;
6pub mod csv_sink;
7pub mod json_sink;
8pub mod parquet_sink;
9
10pub use control_export::*;
11pub use csv_sink::*;
12pub use json_sink::*;
13pub use parquet_sink::*;