mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
15 lines
396 B
JavaScript
15 lines
396 B
JavaScript
// 私人FM - 模式选择
|
|
|
|
// aidj, DEFAULT, FAMILIAR, EXPLORE, SCENE_RCMD ( EXERCISE, FOCUS, NIGHT_EMO )
|
|
// 来不及解释这几个了
|
|
|
|
const createOption = require('../util/option.js')
|
|
module.exports = (query, request) => {
|
|
const data = {
|
|
mode: query.mode,
|
|
subMode: query.submode,
|
|
limit: query.limit || 3,
|
|
}
|
|
return request(`/api/v1/radio/get`, data, createOption(query))
|
|
}
|