First commit

Halb fertig
This commit is contained in:
2019-04-02 22:07:35 +02:00
commit 3695b33c83
14 changed files with 1858 additions and 0 deletions

10
routes/users.js Normal file
View File

@@ -0,0 +1,10 @@
var express = require('express');
var router = express.Router();
/* GET users listing. */
router.get('/', function(req, res, next) {
res.json({status: "Gut"});
// res.send('respond with a resource');
});
module.exports = router;