Advertisement
Guest User

Untitled

a guest
Aug 17th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. app.use('/list-product', (req, res, next) => {
  2. // Do stuff
  3. next();
  4. })
  5.  
  6. app.use('/add-product', (req, res, next) => {
  7. console.log("I'm here")
  8. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement