#![doc = include_str!("../README.md")]
pub use serde;
pub use serde_json;
#[doc(hidden)]
pub mod reexport {
pub use async_trait::async_trait;
}
pub use client::Client;
pub mod appcallback;
pub mod client;
pub mod dapr {
#![allow(clippy::large_enum_variant)]
pub mod proto {
pub mod common {
pub mod v1 {
include!("dapr/dapr.proto.common.v1.rs");
}
}
pub mod runtime {
pub mod v1 {
include!("dapr/dapr.proto.runtime.v1.rs");
}
}
}
}
pub mod error;
pub mod server;
#[cfg(feature = "workflow")]
pub mod workflow;