zitadel/internal/view/model/view.go
Fabi 423b86a03b
feat: sequence and timestamp on searchrequests (#468)
* feat: reread events

* feat: sequence and timestamo on search requests

* feat: sequence and timestamo on search requests

* fix: better naming

* fix: log errors

* fix: read sequence before search request
2020-07-15 13:24:36 +02:00

13 lines
159 B
Go

package model
import (
"time"
)
type View struct {
Database string
ViewName string
CurrentSequence uint64
CurrentTimestamp time.Time
}