user.js 158 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 const express = require('express'); const router = express.Router(); router.get("/", (req,res) => { res.send({test : "hi"}); }); module.exports =router;