dapr-durabletask 0.0.1

Dapr Durable Task Framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub use dapr_durabletask_proto as proto;

pub mod api;
pub mod client;
pub(crate) mod internal;
pub mod task;
pub mod worker;

/// OpenTelemetry distributed tracing helpers.
///
/// Available when the `opentelemetry` feature is enabled.
#[cfg(feature = "opentelemetry")]
pub mod otel {
    pub use crate::internal::otel::*;
}