15 lines
165 B
Go
Raw Normal View History

package eventstore
import (
"time"
)
type Config struct {
PushTimeout time.Duration
MaxRetries uint32
2024-06-24 08:13:43 +02:00
Pusher Pusher
Querier Querier
Searcher Searcher
}