mirror of
https://gitea.com/actions/setup-node.git
synced 2024-11-15 08:19:19 +08:00
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)
|
||
|
}
|