Skip to content

Instantly share code, notes, and snippets.

@marttp
Created September 14, 2019 06:58
Show Gist options
  • Save marttp/fcd11ead1c9c9cfe60e5004f2f80066d to your computer and use it in GitHub Desktop.
Save marttp/fcd11ead1c9c9cfe60e5004f2f80066d to your computer and use it in GitHub Desktop.
const express = require('express');
const { userController } = require('../controllers');
const router = express.Router();
router.get('/local-user', userController.getUsers);
router.post('/local-user', userController.addUsers);
router.get(
'/json-placeholder-user',
userController.getUsersFromJsonPlaceholder
);
module.exports = router;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment