14 lines
343 B
TypeScript
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 }
|
|
);
|
|
}
|