1
2
3
4
5
6
7
#[cfg(feature = "prometheus-metrics")]
mod prometheus_exporter;
mod simple_counter;

#[cfg(feature = "prometheus-metrics")]
pub use prometheus_exporter::Prometheus;
pub use simple_counter::SimpleCounter;