Skip to content

Instantly share code, notes, and snippets.

@artemis15
Created September 16, 2019 18:40
Show Gist options
  • Save artemis15/023184fc6fc72c6f53c9e34ef86dbe05 to your computer and use it in GitHub Desktop.
Save artemis15/023184fc6fc72c6f53c9e34ef86dbe05 to your computer and use it in GitHub Desktop.
version1 of REST aPI
const userController = require('../../controllers/apis/userController');
const express = require('express');
let v1APIRouter = express.Router();
v1APIRouter.use('/users',userController);
module.exports = v1APIRouter;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment