structure

This commit is contained in:
Timur Ercan
2022-11-24 20:30:22 +01:00
parent c382e1b04e
commit ffebefbcd0
98 changed files with 7779 additions and 0 deletions

View File

@ -0,0 +1,12 @@
import type { NextApiRequest, NextApiResponse } from "next";
type Data = {
status: string;
};
export default function handler(
req: NextApiRequest,
res: NextApiResponse<Data>
) {
res.status(200).json({ status: "Api up and running :)" });
}