feature: add event sourcing microservice init

This commit is contained in:
Alexander
2022-04-13 12:16:23 +03:00
commit 730bfdbb8c
38 changed files with 1007 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
package com.eventsourcing.es;
public interface Projection {
void when(Event event);
}