chore: Setup express app

This commit is contained in:
Faruk AYDIN
2021-10-03 18:03:50 +02:00
committed by Ali BARIN
parent a5bf0649ae
commit 701fc48d6f
6 changed files with 362 additions and 26 deletions

View File

@@ -0,0 +1,9 @@
var express = require('express');
var router = express.Router();
/* GET home page. */
router.get('/', function(req, res, next) {
res.json({ hello: 'world' })
});
module.exports = router;