uhppoted-db-web/routes/.js

12 lines
262 B
JavaScript

const express = require('express');
const db = global.db;
const router = express.Router();
// GET /login
router.get('/', (req, res) => {
res.send("Test")
});
module.exports = router;
// I genuinely have no clue if this'll work.... but hey, it's worth a shot.