This commit is contained in:
Tben
2023-08-21 09:14:02 +01:00
parent eb0ddedfaf
commit 9e4568c8eb
5 changed files with 44 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { NextApiHandler, NextApiRequest, NextApiResponse } from "next";
/**
* @type {NextApiHandler}
*/
export default function handler(req: NextApiRequest, res: NextApiResponse) {
return res.status(200).json({
title: "Hello There",
message: "General Kenobi",
});
}