customer.route.js 324 Bytes
module.exports = function (app) {
    var customerCtrl = app.modules.customer.customerCtrl;
    var postCustomerCtrl = app.modules.customer.postCustomerCtrl;

    app.get('/cmf/v2/customer.json',
        customerCtrl.customer
    );
    
    app.post('/cmf/v2/customer.json',
        postCustomerCtrl.postCustomer
    );
};