Skip to content

Instantly share code, notes, and snippets.

@eliabeleal
Created August 19, 2019 12:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eliabeleal/6e93587acd3c807f01c3afadce411909 to your computer and use it in GitHub Desktop.
Save eliabeleal/6e93587acd3c807f01c3afadce411909 to your computer and use it in GitHub Desktop.
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