skir-rust-gen 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -333,13 +333,13 @@ let not_found_or_default = user_registry.users.find_by_key_or_default(999_i32);
|
|
|
333
333
|
println!("{}", not_found_or_default.pets.len()); // 0
|
|
334
334
|
```
|
|
335
335
|
|
|
336
|
-
###
|
|
336
|
+
### SkirRPC services
|
|
337
337
|
|
|
338
|
-
#### Starting a
|
|
338
|
+
#### Starting a SkirRPC service on an HTTP server
|
|
339
339
|
|
|
340
340
|
Full example [here](https://github.com/gepheum/skir-rust-example/blob/main/src/bin/start_service.rs).
|
|
341
341
|
|
|
342
|
-
#### Sending RPCs to a
|
|
342
|
+
#### Sending RPCs to a SkirRPC service
|
|
343
343
|
|
|
344
344
|
Full example [here](https://github.com/gepheum/skir-rust-example/blob/main/src/bin/call_service.rs).
|
|
345
345
|
|