UNPKG
taiga-njs
Version:
latest (0.1.2)
0.1.2
0.1.1
0.1.0
NodeJS implementation of Taiga API
github.com/sachioross/taiga-nodejs
sachioross/taiga-nodejs
taiga-njs
/
lib
/
response.js
8 lines
(6 loc)
•
136 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
var
Response
=
function
(
type
, body
) {
this
.
body
= body;
this
.
status
=
"success"
;
this
.
type
=
type
; };
module
.
exports
=
Response
;