Files
private-cloud/private-console/response/string_response.js
2025-10-28 10:30:20 +08:00

12 lines
242 B
JavaScript

/**
* Created by strawmanbobi
* 2016-11-27
*/
ServiceResponse = require("./service_response");
function StringResponse(status, entity) {
this.entity = entity;
ServiceResponse.call(this, status);
}
module.exports = StringResponse;