Add tests

This commit is contained in:
Stone_Red
2022-03-22 10:17:10 +01:00
parent c32fffd538
commit da35fcf424
3 changed files with 5318 additions and 5 deletions
+10
View File
@@ -0,0 +1,10 @@
import { Request, Response } from "express";
const express = require('express');
const router = express.Router();
router.get('/', (request: Express.Request, response: Response) => {
response.status(200).send("Cool test stuff!");
});
module.exports = router;