mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
12 lines
309 B
JavaScript
12 lines
309 B
JavaScript
// 会员本月下载歌曲记录
|
|
|
|
const createOption = require('../util/option.js')
|
|
module.exports = (query, request) => {
|
|
const data = {
|
|
limit: query.limit || '20',
|
|
offset: query.offset || '0',
|
|
total: 'true',
|
|
}
|
|
return request(`/api/member/song/monthdownlist`, data, createOption(query))
|
|
}
|