mirror of
https://github.com/stCarolas/setup-maven.git
synced 2024-11-14 22:08:04 +00:00
8 lines
168 B
JavaScript
8 lines
168 B
JavaScript
|
module.exports = getNextPage
|
||
|
|
||
|
const getPage = require('./get-page')
|
||
|
|
||
|
function getNextPage (octokit, link, headers) {
|
||
|
return getPage(octokit, link, 'next', headers)
|
||
|
}
|