data_pipeline_rs/
stats_producer.rs

1pub trait StatsProducer {
2    fn get_stats(&self) -> Option<serde_json::Value> {
3        None
4    }
5}