1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/ts-openapi/pages/api/hello.ts

7 lines
169 B
TypeScript
Raw Normal View History

2020-10-06 15:41:56 +09:00
import { NextApiRequest, NextApiResponse } from "next";
export default (req: NextApiRequest, res: NextApiResponse) => {
console.log(req.body);
res.end("hello");
};