mirror of
https://github.com/fergalmoran/radio-otherway.git
synced 2025-12-22 09:50:29 +00:00
7 lines
196 B
TypeScript
7 lines
196 B
TypeScript
import {NextApiRequest, NextApiResponse} from "next";
|
|
|
|
const handler = async (req: NextApiRequest, res: NextApiResponse) => {
|
|
res.status(200).json({hello: "sailor"});
|
|
};
|
|
export default handler;
|