docs: init (#181)

Signed-off-by: mikeee <hey@mike.ee>
This commit is contained in:
Mike Nguyen 2024-07-23 21:24:48 +01:00 committed by GitHub
parent 906f19061a
commit c411864c6d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 0 deletions

View File

@ -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;