From 0f9fadb718ef818c4327f2c71b353df144bb501b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabio=20Jos=C3=A9?= Date: Sun, 9 Jun 2019 20:58:01 -0300 Subject: [PATCH] Fix the json format import MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fabio José --- lib/cloudevent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cloudevent.js b/lib/cloudevent.js index c6006fe..40fd049 100644 --- a/lib/cloudevent.js +++ b/lib/cloudevent.js @@ -1,6 +1,6 @@ var Spec01 = require("./specs/spec_0_1.js"); var Spec02 = require("./specs/spec_0_2.js"); -var JSONFormatter01 = require("./formats/json_0_1.js"); +var JSONFormatter01 = require("./formats/json/formatter.js"); var HTTPStructured01 = require("./bindings/http/emitter_structured_0_1.js"); var HTTPStructured02 = require("./bindings/http/emitter_structured_0_2.js"); var HTTPBinary01 = require("./bindings/http/emitter_binary_0_1.js");