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