mirror of
https://github.com/sqlchat/sqlchat.git
synced 2025-07-29 10:13:14 +08:00
8 lines
194 B
TypeScript
8 lines
194 B
TypeScript
import { NextApiRequest, NextApiResponse } from "next";
|
|
|
|
const handler = async (_: NextApiRequest, res: NextApiResponse) => {
|
|
res.status(200).json("Hello world!");
|
|
};
|
|
|
|
export default handler;
|