mirror of
https://github.com/github/codeql-action.git
synced 2025-12-31 19:50:32 +08:00
11 lines
195 B
JavaScript
11 lines
195 B
JavaScript
function sendResponse(octokitResponse) {
|
|
return {
|
|
statusCode: octokitResponse.status,
|
|
headers: octokitResponse.headers,
|
|
body: octokitResponse.text
|
|
};
|
|
}
|
|
export {
|
|
sendResponse
|
|
};
|