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