mirror of https://github.com/dapr/rust-sdk.git
parent
906f19061a
commit
c411864c6d
|
@ -1,3 +1,5 @@
|
|||
#![doc = include_str!("../README.md")]
|
||||
|
||||
extern crate dapr_macros;
|
||||
|
||||
pub use dapr_macros::actor;
|
||||
|
@ -6,8 +8,13 @@ pub use serde_json;
|
|||
|
||||
pub use client::Client;
|
||||
|
||||
/// Module containing the Dapr Callback SDK.
|
||||
pub mod appcallback;
|
||||
/// Module containing the 'Client' implementation.
|
||||
pub mod client;
|
||||
/// Module importing the Dapr runtime implementation.
|
||||
pub mod dapr;
|
||||
/// Module defining the error implementations.
|
||||
pub mod error;
|
||||
/// Module containing the 'Server' implementation.
|
||||
pub mod server;
|
||||
|
|
Loading…
Reference in New Issue