File tree Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -137,34 +137,20 @@ binding.emit(cloudevent)
137
137
├── lib
138
138
│ ├── bindings
139
139
│ │ └── http
140
- │ │ └── structured_0_1.js
141
140
│ ├── cloudevent.js
142
141
│ ├── format
143
- │ │ └── json_0_1.js
144
142
│ └── specs
145
- │ ├── spec_0_1.js
146
- │ └── spec_0_2.js
147
143
├── LICENSE
148
144
├── package.json
149
145
├── README.md
150
- └── test
151
- ├── cloudevent_spec_0_1.js
152
- ├── cloudevent_spec_0_2.js
153
- └── http_binding_0_1.js
154
146
```
155
147
156
148
- ` index.js ` : library exports
157
149
- ` lib/bindings ` : every binding implementation goes here
158
150
- ` lib/bindings/http ` : every http binding implementation goes here
159
- - ` lib/bindings/http/structured_0_1.js ` : implementation of structured HTTP Binding
160
151
- ` lib/cloudevent.js ` : implementation of Cloudevent, an interface
161
152
- ` lib/format/ ` : every format implementation goes here
162
- - ` lib/format/json_0_1.js ` : implementation for JSON formatting [ version 0.1] ( https://github.com/cloudevents/spec/blob/v0.1/json-format.md )
163
153
- ` lib/specs/ ` : every spec implementation goes here
164
- - ` lib/specs/spec_0_1.js ` : implementation for spec [ version 0.1] ( https://github.com/cloudevents/spec/blob/v0.1/spec.md )
165
- - ` lib/specs/spec_0_2.js ` : implementation for spec [ version 0.2] ( https://github.com/cloudevents/spec/blob/v0.2/spec.md )
166
- - ` test/cloudevent_spec_0_1.js ` : unit testing for spec 0.1
167
- - ` test/cloudevent_spec_0_2.js ` : unit testing for spec 0.2
168
154
169
155
## Unit Testing
170
156
You can’t perform that action at this time.
0 commit comments