UNPKG

rest-in-contract

Version:

Rest API Contract. This module is the Contract Server nodejs module for `rest-in-contract` project.

11 lines (9 loc) 222 B
'use strict'; class Response { constructor(props = {}) { this.status = props.status || 200; this.body = props.body || ''; this.headers = props.headers || {}; } } module.exports = Response;