mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 02:27:31 +00:00
16 lines
371 B
Go
16 lines
371 B
Go
package projection
|
|
|
|
import (
|
|
"github.com/zitadel/zitadel/internal/v2/eventstore"
|
|
)
|
|
|
|
type HighestPosition eventstore.GlobalPosition
|
|
|
|
var _ eventstore.Reducer = (*HighestPosition)(nil)
|
|
|
|
// Reduce implements eventstore.Reducer.
|
|
func (h *HighestPosition) Reduce(events ...*eventstore.StorageEvent) error {
|
|
*h = HighestPosition(events[len(events)-1].Position)
|
|
return nil
|
|
}
|