Fix uint :)

This commit is contained in:
braginini
2022-12-27 17:23:33 +01:00
parent 0e5cfcf9ce
commit fea4336bca

View File

@@ -4,7 +4,7 @@ type NoopEventStore struct {
}
func (store *NoopEventStore) Save(event *Event) (*Event, error) {
event.ID = -1
event.ID = 1
return event, nil
}