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

    app.get('/cmf/v2/customer/customerId.json',
        customerCtrl.customer
    );
    
    
};