UNPKG

couch-elastic-stream

Version:

data streaming from couchdb to elastic via kafka.

14 lines (9 loc) 250 B
"use strict"; const {SinkConfig} = require("kafka-connect"); class ElasticSinkConfig extends SinkConfig { constructor(...args){ super(...args); } run(){ return super.run(); } } module.exports = ElasticSinkConfig;