Double quotes

Signed-off-by: Fabio José <fabiojose@gmail.com>
This commit is contained in:
Fabio José 2018-12-15 11:27:33 -02:00
parent 95a0bdbc64
commit 4d582a268f
1 changed files with 3 additions and 3 deletions

View File

@ -108,12 +108,12 @@ var cloudevent = new Cloudevent()
// The binding configuration using POST
var config = {
method: 'POST',
url : 'https://mywebhook.com'
method: "POST",
url : "https://myserver.com"
};
// The binding instance
var binding = Cloudevent.bindings['http-structured0.1'](config);
var binding = Cloudevent.bindings["http-structured0.1"](config);
// Emit the event using Promise
binding.emit(cloudevent)