Router/util/response.ts

5 lines
207 B
TypeScript
Executable File

export const NotFound = (msg?: string) =>
new Response(msg ?? "Not Found", { status: 404 });
export const InternalError = (msg?: string) =>
new Response(msg ?? "Internal Server Error", { status: 500 });