stack/apps/backend/src/app/api/[...notFoundPath]/route.ts
2025-02-01 17:46:21 -08:00

12 lines
312 B
TypeScript

import { NotFoundHandler } from "@/route-handlers/not-found-handler";
const handler = NotFoundHandler;
export const GET = handler;
export const POST = handler;
export const PUT = handler;
export const DELETE = handler;
export const PATCH = handler;
export const OPTIONS = handler;
export const HEAD = handler;