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
}