From f47de94b4886d13134c40c7d9ed85d3a92ef179f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabio=20Jos=C3=A9?= Date: Tue, 29 Oct 2019 21:15:29 -0300 Subject: [PATCH] Exporting the http binary emitter spec 1.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fabio José --- v1/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/v1/index.js b/v1/index.js index 803c626..06f95db 100644 --- a/v1/index.js +++ b/v1/index.js @@ -2,6 +2,7 @@ const Cloudevent = require("../lib/cloudevent.js"); const Spec = require("../lib/specs/spec_1.js"); const StructuredHTTPEmitter = require("../lib/bindings/http/emitter_structured.js"); +const BinaryHTTPEmitter = require("../lib/bindings/http/emitter_binary_1.js"); function event() { return new Cloudevent(Spec); @@ -10,5 +11,6 @@ function event() { module.exports = { Spec, StructuredHTTPEmitter, + BinaryHTTPEmitter, event };