mirror of
https://github.com/github/codeql-action.git
synced 2025-12-27 01:30:10 +08:00
11 lines
212 B
JavaScript
11 lines
212 B
JavaScript
function getOAuthClientCode() {
|
|
return `import { Octokit: Core } from "https://esm.sh/@octokit/core";
|
|
|
|
export const Octokit = Core.defaults({
|
|
oauth: {}
|
|
})`;
|
|
}
|
|
export {
|
|
getOAuthClientCode
|
|
};
|