1
0
mirror of https://github.com/zitadel/zitadel.git synced 2025-08-14 01:37:34 +00:00
Files
zitadel/internal/eventstore/config.go

14 lines
144 B
Go
Raw Normal View History

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