cvsa/packages/backend/routes/404.ts
2025-04-29 21:45:38 +08:00

10 lines
141 B
TypeScript

import { Context } from "hono";
export const notFoundRoute = (c: Context) => {
return c.json(
{
message: "Not Found"
},
404
);
};