fiddler-cli 4.9.1

Data Stream processor CLI written in rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Fast and flexible data stream processor written in Rust
//!
//! Provides a cli for running, linting and testing data streaming pipelines
//! using a declaritive yaml based configuration for data aggregation and
//! transformation
use fiddler::Error;
use fiddler_cmd::run;

#[tokio::main]
async fn main() -> Result<(), Error> {
    run().await
}