Guest User

Untitled

a guest
Feb 25th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. const express = require('express');
  2. const app = express();
  3.  
  4. /* requiring middleware */
  5. const { getConnection } = require('./app/middlewares/mysql');
  6.  
  7. /* connecting mysql before going to requested route */
  8. app.use('/auth', getConnection, require('./app/controllers/auth'));
Add Comment
Please, Sign In to add comment