mirror of
https://github.com/zitadel/zitadel
synced 2024-11-23 19:19:19 +00:00
dd5e4acd24
* start sub * start implement subsciptions * start subscription * implementation for member done * admin done * fix: tests * extend handlers * prepary notification * no errors in adminapi * changed current sequence in all packages * ignore mocks * works * subscriptions as singleton * tests * refactor: rename function scope var
15 lines
260 B
Go
15 lines
260 B
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type View struct {
|
|
Database string
|
|
ViewName string
|
|
CurrentSequence uint64
|
|
EventTimestamp time.Time
|
|
LastSuccessfulSpoolerRun time.Time
|
|
AggregateType string
|
|
}
|