Advertisement
Guest User

Untitled

a guest
Jul 4th, 2015
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. app.get('/user/{userId}', routeValidation, function(req, res) {});
  2. app.get('/', function(req, res) {
  3. res.write('hello world');
  4. res.end();
  5. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement