mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-17 15:32:50 +00:00
21 lines
522 B
JavaScript
21 lines
522 B
JavaScript
// pkg/dist-src/index.js
|
|
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";
|
|
|
|
// pkg/dist-src/version.js
|
|
var VERSION = "19.0.13";
|
|
|
|
// pkg/dist-src/index.js
|
|
var Octokit = Core.plugin(
|
|
requestLog,
|
|
legacyRestEndpointMethods,
|
|
paginateRest
|
|
).defaults({
|
|
userAgent: `octokit-rest.js/${VERSION}`
|
|
});
|
|
export {
|
|
Octokit
|
|
};
|