mirror of
https://github.com/sqlchat/sqlchat.git
synced 2025-07-28 17:53:21 +08:00
14 lines
226 B
TypeScript
14 lines
226 B
TypeScript
import { NextRequest } from "next/server";
|
|
|
|
export const config = {
|
|
runtime: "edge",
|
|
};
|
|
|
|
const handler = async (_: NextRequest) => {
|
|
return new Response("Hello world!", {
|
|
status: 200,
|
|
});
|
|
};
|
|
|
|
export default handler;
|