UNPKG

zcatalyst-cli

Version:

Command Line Tool for CATALYST

14 lines (13 loc) 253 B
export default class IntegResponse { response; constructor(res) { this.response = res; } buildResponse() { return { status: 200, contentType: 'application/json', responseBody: JSON.stringify(this.response) }; } }