Replit Commit
This commit is contained in:
commit
f49f965a42
41 changed files with 32720 additions and 0 deletions
9
lib/routes/results-route.js
Normal file
9
lib/routes/results-route.js
Normal file
|
@ -0,0 +1,9 @@
|
|||
import express from "express";
|
||||
import { getCurrentlyFailing } from "../database/queries/test_results.js";
|
||||
const router = express.Router();
|
||||
|
||||
router.get("/failing", (req, res) => {
|
||||
res.send([]);
|
||||
});
|
||||
|
||||
export default router;
|
Loading…
Add table
Add a link
Reference in a new issue