From e451aaa0f493d4fc20e6f7d2962fcb066f1bbcf1 Mon Sep 17 00:00:00 2001 From: Michael Schnell Date: Tue, 31 Dec 2019 09:44:27 +0100 Subject: [PATCH] Fixed typo --- shared/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/README.md b/shared/README.md index 321ac7a..1277abd 100644 --- a/shared/README.md +++ b/shared/README.md @@ -1,7 +1,7 @@ # cqrs4j-example-shared Shared code for all demo applications and client & server. -> :information_source: There is often a discussion about exposing a library like this one to the outside is a good idea. In case of a homogenous environment it can be OK to share commands, events and value objects as library. This will save some time as they are used all over the place. If you don't like this approach, simply copy the content of this library into your microservice projects. +> :information_source: There is often a discussion if exposing a library like this one to the outside is a good idea. In case of a homogenous environment it can be OK to share commands, events and value objects as library. This will save some time as they are used all over the place. If you don't like this approach, simply copy the content of this library into your microservice projects. ## Commands - [CreatePersonCommand](src/main/java/org/fuin/cqrs4j/example/shared/CreatePersonCommand.java) - A new person should be created in the system. (Example: [CreatePersonCommand.json](src/test/resources/commands/CreatePersonCommand.json))