mirror of
https://github.com/NeteaseCloudMusicApiEnhanced/api-enhanced.git
synced 2025-10-22 06:03:09 +00:00
10 lines
274 B
JavaScript
10 lines
274 B
JavaScript
// 电台新人榜
|
|
const createOption = require('../util/option.js')
|
|
module.exports = (query, request) => {
|
|
const data = {
|
|
limit: query.limit || 100,
|
|
offset: query.offset || 0,
|
|
}
|
|
return request(`/api/dj/toplist/newcomer`, data, createOption(query, 'weapi'))
|
|
}
|