mirror of
https://github.com/github/codeql-action.git
synced 2025-12-30 19:20:08 +08:00
13 lines
261 B
JavaScript
13 lines
261 B
JavaScript
function unknownRouteResponse(request) {
|
|
return {
|
|
status: 404,
|
|
headers: { "content-type": "application/json" },
|
|
text: JSON.stringify({
|
|
error: `Unknown route: ${request.method} ${request.url}`
|
|
})
|
|
};
|
|
}
|
|
export {
|
|
unknownRouteResponse
|
|
};
|