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 });