9 lines
166 B
Go
9 lines
166 B
Go
|
package elasticstream
|
||
|
|
||
|
type Config struct {
|
||
|
Host string
|
||
|
// map of index name and position from where data is to be read.
|
||
|
Indexes map[string]int
|
||
|
BatchSize int
|
||
|
}
|