UNPKG
couch-elastic-stream
Version:
latest (1.0.0)
1.0.0
data streaming from couchdb to elastic via kafka.
couch-elastic-stream
/
lib
/
utils
/
CouchSourceConfig.js
14 lines
(9 loc)
•
254 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"use strict"
;
const
{
SourceConfig
} =
require
(
"kafka-connect"
);
class
CouchSourceConfig
extends
SourceConfig
{
constructor
(
...args
){
super
(...args); }
run
(
){
return
super
.
run
(); } }
module
.
exports
=
CouchSourceConfig
;