dapr_durabletask/lib.rs
1pub use dapr_durabletask_proto as proto;
2
3pub mod api;
4pub mod client;
5pub(crate) mod internal;
6pub mod task;
7pub mod worker;
8
9/// OpenTelemetry distributed tracing helpers.
10///
11/// Available when the `opentelemetry` feature is enabled.
12#[cfg(feature = "opentelemetry")]
13pub mod otel {
14 pub use crate::internal::otel::*;
15}