Skip to content

Instantly share code, notes, and snippets.

@TaylorAckley
Created October 8, 2018 00:10
Show Gist options
  • Save TaylorAckley/0c52de68e5cc0c4aa937807c02e81fb8 to your computer and use it in GitHub Desktop.
Save TaylorAckley/0c52de68e5cc0c4aa937807c02e81fb8 to your computer and use it in GitHub Desktop.
MVC - Routes
const express = require('express');
const AccountCtrl = require('../controllers/account.controller');
const unauth = express.Router();
unauth
.post('/account/register', AccountCtrl.register)
.post('/account/login', AccountCtrl.login)
module.exports = unauth;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment