cvsa/packages/backend/routes/404.ts

11 lines
142 B
TypeScript

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