operonx 0.8.3

High-performance Rust execution backend for Operon workflows
1
2
3
4
5
6
7
8
//! Built-in exporters for the trace pipeline.
//!
//! Mirrors Python `core/tracing/exporters/`. Each exporter implements
//! `Exporter::export` and is given the post-processor event batch.

pub mod local_file;

pub use local_file::JsonFileExporter;