building a foundation and breaking prisma

Co-authored-by: Spacelord <Spacelord09@users.noreply.github.com>
This commit is contained in:
2023-04-30 22:04:13 +02:00
commit 18a4393765
18 changed files with 2717 additions and 0 deletions

4
src/routes/api/test.ts Normal file
View File

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