mirror of
https://github.com/Steffo99/distributed-arcade-viewer.git
synced 2024-11-22 16:04:23 +00:00
14 lines
301 B
TypeScript
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"})
|
|
}
|