mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 09:37:45 +00:00
chore: move the go code into a subfolder
This commit is contained in:
15
apps/api/internal/v2/projection/highest_position.go
Normal file
15
apps/api/internal/v2/projection/highest_position.go
Normal file
@@ -0,0 +1,15 @@
|
||||
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
|
||||
}
|
Reference in New Issue
Block a user