Skip to content

Instantly share code, notes, and snippets.

@pedropbazzo
Created January 10, 2021 00:08
Show Gist options
  • Save pedropbazzo/dae2939d30e8c14d4e644a40fa01768b to your computer and use it in GitHub Desktop.
Save pedropbazzo/dae2939d30e8c14d4e644a40fa01768b to your computer and use it in GitHub Desktop.
Node JS Controller Car
const carsService = require('../services/cars.service');
const get = function(req, res){
res.send(carsService.get(req.params._id))
}
const getAll = function(req, res){
res.send(carsService.getAll())
}
module.exports = {
get,
getAll
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment