Files
zitadel/internal/eventstore/config.go
adlerhurst 7c9351e893 remove improved_performance from feature API
remove `eventstore.Searcher` interface

remove code which uses the `eventstore.Searcher` interface

remove implementation of `eventstore.Searcher` interface

cleanup code to use functions which were suffixed with `*Old`
2025-06-15 08:33:20 +02:00

14 lines
144 B
Go

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