1
Fork 0
mirror of https://github.com/Steffo99/distributed-arcade-viewer.git synced 2024-11-22 07:54:24 +00:00
distributed-arcade-viewer/pages/api/hello.ts
2023-01-10 16:24:43 +01:00

14 lines
301 B
TypeScript

// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
import type {NextApiRequest, NextApiResponse} from "next"
type Data = {
name: string
}
export default function handler(
req: NextApiRequest,
res: NextApiResponse<Data>,
) {
res.status(200).json({name: "John Doe"})
}