1
0
mirror of https://github.com/zitadel/zitadel.git synced 2025-07-31 02:43:43 +00:00

15 lines
165 B
Go
Raw Normal View History

package eventstore
import (
"time"
)
type Config struct {
PushTimeout time.Duration
MaxRetries uint32
Pusher Pusher
Querier Querier
Searcher Searcher
}