UNPKG

jii

Version:

Jii - Full-Stack JavaScript Framework

24 lines (18 loc) 529 B
/** * @author Vladimir Kozhin <affka@affka.ru> * @license MIT */ 'use strict'; const Jii = require('../index'); const BaseResponse = require('../base/Response'); class Response extends BaseResponse { preInit() { /** * The status 0 means the program terminates successfully. * @type {number} the exit status. Exit statuses should be in the range 0 to 254. */ this.exitStatus = 0; super.preInit(...arguments); } } module.exports = Response;