Add more testing stuff

This commit is contained in:
Stone_Red
2022-03-23 11:40:16 +01:00
parent da35fcf424
commit 12abcad196
5 changed files with 59 additions and 11 deletions
@@ -0,0 +1,6 @@
import { Request, Response } from "express";
export function sayHello(request: Request, response: Response) {
console.log(request.params);
response.send(request.params.id);
}