You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: examples/actors/README.md
+16-16
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Actor Example
2
2
3
-
This example demonstrates the Dapr actor framework. To author an actor,
3
+
This example demonstrates the Dapr actor framework. To author an actor,
4
4
5
5
1. Create a struc decorated with the `#[dapr::actor]` macro to house your custom actor methods that map to [Axum handlers](https://docs.rs/axum/latest/axum/handler/index.html), use [Axum extractors](https://docs.rs/axum/latest/axum/extract/index.html) to access the incoming request and return an [`impl IntoResponse`](https://docs.rs/axum/latest/axum/response/trait.IntoResponse.html).
6
6
Use the `DaprJson` extractor to deserialize the request from Json coming from a Dapr sidecar.
@@ -10,24 +10,24 @@ Use the `DaprJson` extractor to deserialize the request from Json coming from a
0 commit comments