8 lines
218 B
JavaScript
8 lines
218 B
JavaScript
![]() |
module.exports = octokitRegisterEndpoints
|
||
|
|
||
|
const registerEndpoints = require('./register-endpoints')
|
||
|
|
||
|
function octokitRegisterEndpoints (octokit) {
|
||
|
octokit.registerEndpoints = registerEndpoints.bind(null, octokit)
|
||
|
}
|