Mitchell Magro 4f05061411 Fixed Build
2025-11-25 11:39:58 +01:00

14 lines
343 B
TypeScript

import { NextResponse } from "next/server";
/**
* Placeholder Settings API route.
* Keeps the module valid while the real implementation
* is being built, and makes the intent obvious to clients.
*/
export async function GET() {
return NextResponse.json(
{ message: "Settings endpoint not implemented" },
{ status: 501 }
);
}