first commit
This commit is contained in:
15
node_modules/@octokit/rest/dist-src/index.js
generated
vendored
Normal file
15
node_modules/@octokit/rest/dist-src/index.js
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
import { Octokit as Core } from "@octokit/core";
|
||||
import { requestLog } from "@octokit/plugin-request-log";
|
||||
import {
|
||||
paginateRest
|
||||
} from "@octokit/plugin-paginate-rest";
|
||||
import { legacyRestEndpointMethods } from "@octokit/plugin-rest-endpoint-methods";
|
||||
import { VERSION } from "./version.js";
|
||||
const Octokit = Core.plugin(requestLog, legacyRestEndpointMethods, paginateRest).defaults(
|
||||
{
|
||||
userAgent: `octokit-rest.js/${VERSION}`
|
||||
}
|
||||
);
|
||||
export {
|
||||
Octokit
|
||||
};
|
||||
Reference in New Issue
Block a user