SDK Requirements for v0.3

Signed-off-by: Fabio José <fabiojose@gmail.com>
This commit is contained in:
Fabio José 2019-07-29 13:25:13 -03:00
parent 2e5dddf82c
commit 4adde60995
1 changed files with 11 additions and 0 deletions

11
v03/index.js Normal file
View File

@ -0,0 +1,11 @@
const Cloudevent = require("../lib/cloudevent.js");
const Spec = require("../lib/specs/spec_0_3.js");
function event() {
return new Cloudevent(Spec);
}
module.exports = {
Spec,
event
};