Created
August 19, 2019 12:13
-
-
Save eliabeleal/6e93587acd3c807f01c3afadce411909 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const express = require('express') | |
const LocationController = require('./controllers/LocationController') | |
const UserController = require('./controllers/UserController') | |
const routes = express.Router() | |
routes.post('/users', UserController.store) | |
module.exports = routes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment