freechat/freechat-client/src/response.js

8 lines
159 B
JavaScript

exports.Response = class Response {
constructor(code, body, err) {
this.status_code = code
this.body = body
this.err = err
}
}