mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-18 12:27:33 +00:00

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`
14 lines
144 B
Go
14 lines
144 B
Go
package eventstore
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Config struct {
|
|
PushTimeout time.Duration
|
|
MaxRetries uint32
|
|
|
|
Pusher Pusher
|
|
Querier Querier
|
|
}
|