From 358a0d65035d9944ea63573d95782142b972a2f7 Mon Sep 17 00:00:00 2001 From: Spacelord Date: Mon, 1 May 2023 00:07:45 +0200 Subject: [PATCH] Fix routing again.. --- src/routes/api/test.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/routes/api/test.ts b/src/routes/api/test.ts index 2342ff1..4490bdf 100644 --- a/src/routes/api/test.ts +++ b/src/routes/api/test.ts @@ -1,4 +1,5 @@ import express, { Request, Response } from 'express'; + export default (req: Request, res: Response) => { - res.status(200).send("Test Successful!"); -}; \ No newline at end of file + res.status(200).send('API Test Successful!'); +};