mirror of
https://gitea.com/actions/setup-maven.git
synced 2025-11-11 03:16:21 +08:00
8 lines
220 B
JavaScript
8 lines
220 B
JavaScript
|
|
module.exports = octokitRegisterEndpoints;
|
||
|
|
|
||
|
|
const registerEndpoints = require("./register-endpoints");
|
||
|
|
|
||
|
|
function octokitRegisterEndpoints(octokit) {
|
||
|
|
octokit.registerEndpoints = registerEndpoints.bind(null, octokit);
|
||
|
|
}
|