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 } ); }