import { NextResponse } from "next/server"; export async function POST() { return NextResponse.json( { error: "Folder watching has been replaced by FTP watching. Use /api/ftp-watch instead." }, { status: 410 } ); }