mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-09 14:00:15 -04:00
6 lines
153 B
TypeScript
6 lines
153 B
TypeScript
import { NextResponse } from "next/server";
|
|
|
|
export async function GET() {
|
|
return NextResponse.json({ message: "Hello World!" }, { status: 200 });
|
|
}
|