hellohello234
Version:
Simple calculator API hosted on APIMATIC
27 lines (21 loc) • 660 B
JavaScript
/**
* @module hellohello234
*
* Simple calculator API hosted on APIMATIC
*/
;
const Configuration = require('./configuration');
const SimpleCalculatorController = require('./Controllers/SimpleCalculatorController');
const OperationTypeEnum = require('./Models/OperationTypeEnum');
const APIException = require('./Exceptions/APIException');
const initializer = {
// functional components of hellohello234
Configuration,
// controllers of hellohello234
SimpleCalculatorController,
// models of hellohello234
OperationTypeEnum,
// exceptions of hellohello234
APIException,
};
module.exports = initializer;