mirror of
https://github.com/stack-auth/stack.git
synced 2026-07-03 21:02:05 +08:00
12 lines
312 B
TypeScript
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;
|