refactor(v2): init events (#7823)

creates events structures for initial projections and read models
This commit is contained in:
Silvan
2024-05-23 06:36:08 +02:00
committed by GitHub
parent f37113194d
commit 12be21a3ff
56 changed files with 1952 additions and 316 deletions

View File

@@ -41,7 +41,7 @@ func (q *Query) Pagination() *Pagination {
return q.pagination
}
func (q *Query) Reduce(events ...*Event[StoragePayload]) error {
func (q *Query) Reduce(events ...*StorageEvent) error {
return q.reducer.Reduce(events...)
}