12 lines
262 B
JavaScript
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.
|