2020-05-15 09:52:23 -04:00
|
|
|
module.exports = factory;
|
2019-08-08 10:10:17 -04:00
|
|
|
|
2020-05-15 09:52:23 -04:00
|
|
|
const Octokit = require("./constructor");
|
|
|
|
|
const registerPlugin = require("./register-plugin");
|
2019-08-08 10:10:17 -04:00
|
|
|
|
2020-05-15 09:52:23 -04:00
|
|
|
function factory(plugins) {
|
|
|
|
|
const Api = Octokit.bind(null, plugins || []);
|
|
|
|
|
Api.plugin = registerPlugin.bind(null, plugins || []);
|
|
|
|
|
return Api;
|
2019-08-08 10:10:17 -04:00
|
|
|
}
|