fluvio-smartstream 0.4.0

Fluvio SmartModule WASM library
Documentation
1
2
3
4
5
6
7
8
use fluvio_smartmodule::{smartmodule, Record, Result};

#[smartmodule(filter)]
pub fn my_filter(_record: &Record) -> Result<bool> {
    unimplemented!()
}

fn main() {}