2025-11-27 09:09:43 +01:00

14 lines
345 B
TypeScript

import { NextResponse } from "next/server";
/**
* Placeholder Whitdrawal 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 }
);
}