UNPKG

prometheus-pushgw-kafka-connect

Version:
15 lines (9 loc) 244 B
"use strict"; const {SinkConfig} = require("kafka-connect"); class PrometheusSinkConfig extends SinkConfig { constructor(...args){ super(...args); } run(){ return super.run(); } } module.exports = PrometheusSinkConfig;