Files
sample-node-api/server/controllers/accountsCars.controller.js
Craig-Forrest 0355c008e0 initial commit
2019-02-18 15:11:44 +00:00

14 lines
279 B
JavaScript

const accountsCarsService = require('../services/accountsCars.service');
const get = function(req, res){
res.send(accountsCarsService.get(req));
}
const getAll = function(req, res){
res.send(accountsCarsService.getAll(req));
}
module.exports = {
get,
getAll
};