Add tests

This commit is contained in:
Stone_Red
2022-03-30 11:31:25 +02:00
parent c6319edc31
commit f3bf6855e3
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;