Guest User

Untitled

a guest
Nov 17th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. const pkg_json = require('../package.json')
  2. const turbo = require('turbo360')({site_id:pkg_json.app})
  3. const vertex = require('vertex360')({site_id:pkg_json.app})
  4. const router = vertex.router()
  5.  
  6. router.get('/', function(req, res){
  7.  
  8. res.json({
  9. confirmation: 'success',
  10. data: 'this is the tags route!'
  11. })
  12.  
  13. })
  14.  
  15. module.exports = router
Add Comment
Please, Sign In to add comment