Fix routing.

This commit is contained in:
2023-05-01 00:07:13 +02:00
parent 18a4393765
commit 30c2cd4732
10 changed files with 125 additions and 82 deletions

View File

@ -1,4 +1,5 @@
import express, { Request, Response } from 'express';
export default (req: Request, res: Response) => {
res.status(200).send("Test Successful!");
};
res.status(200).send('API Test Successful!');
};