echos-ocr/src/app/api/watch/route.ts

9 lines
228 B
TypeScript
Raw Normal View History

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