Skip to content

Commit

Permalink
docs: update CQRS readmes for plain rust and service chaining
Browse files Browse the repository at this point in the history
Signed-off-by: Thorsten Hans <[email protected]>
  • Loading branch information
ThorstenHans committed Jun 5, 2024
1 parent 9060d00 commit d0a888a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion cqrs-rust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ On the Command side, operations are focused on enforcing business rules, validat

Send data to `POST /items` and `PUT /items/:id` using the following structure:

```jsonc
```json
{
"firstName": "John",
"lastName": "Smith",
Expand All @@ -31,6 +31,7 @@ Send data to `POST /items` and `PUT /items/:id` using the following structure:
"city": "Boston"
}
}
```

## Supported Platforms

Expand Down
3 changes: 2 additions & 1 deletion cqrs-servicechaining/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ On the Command side, operations are focused on enforcing business rules, validat

Send data to `POST /items` and `PUT /items/:id` using the following structure:

```jsonc
```json
{
"firstName": "John",
"lastName": "Smith",
Expand All @@ -31,6 +31,7 @@ Send data to `POST /items` and `PUT /items/:id` using the following structure:
"city": "Boston"
}
}
```

## Supported Platforms

Expand Down

0 comments on commit d0a888a

Please sign in to comment.