mirror of
https://github.com/zitadel/zitadel.git
synced 2025-07-17 07:38:57 +00:00
16 lines
199 B
Go
16 lines
199 B
Go
package eventstore
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Config struct {
|
|
PushTimeout time.Duration
|
|
MaxRetries uint32
|
|
|
|
Pusher Pusher
|
|
Querier Querier
|
|
Searcher Searcher
|
|
Snapshotter Snapshotter
|
|
}
|