blob: 9a7e4332b6371ce129021160416f3240416ce527 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#[cfg(feature = "tonic")]
pub mod tonic;
#[cfg(feature = "reqwest")]
pub mod reqwest;
// TODO: Helper library for axum or another http server, see
// https://github.com/hseeberger/hello-tracing-rs/blob/main/hello-tracing-common/src/otel/http.rs
// as an example and we can reuse tonic::accept_trace fun, at least for a tower::ServiceBuilder
|