16 lines
199 B
Go
Raw Normal View History

package eventstore
import (
"time"
)
type Config struct {
PushTimeout time.Duration
MaxRetries uint32
2024-10-10 14:27:53 +03:00
Pusher Pusher
Querier Querier
Searcher Searcher
Snapshotter Snapshotter
}