fix: payload (de)serialization of some events (#6858)

This commit is contained in:
Livio Spring
2023-11-03 13:02:17 +02:00
committed by GitHub
parent 585c8af5f2
commit 9378e19090
4 changed files with 12 additions and 11 deletions

View File

@@ -17,7 +17,7 @@ func EventTypeFromFeature(feature domain.Feature) eventstore.EventType {
}
type SetEvent[T SetEventType] struct {
*eventstore.BaseEvent
*eventstore.BaseEvent `json:"-"`
Value T
}