jobscraper/server/routes/jobs.route.js
Martin Donnelly 5001bbd798 init
2020-05-19 10:05:04 +01:00

18 lines
267 B
JavaScript

/**
* Created by WebStorm.
* User: martin
* Date: 18/05/2020
* Time: 13:39
*/
const jobs = require('../controllers/jobs.controller');
module.exports = (app) => {
app.route('/jobs')
.get(jobs.getList);
app.route('/jobs/:id')
.get(jobs.getJob);
};