mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
11 lines
214 B
JavaScript
11 lines
214 B
JavaScript
// 一起听状态
|
|
|
|
const createOption = require('../util/option.js')
|
|
module.exports = (query, request) => {
|
|
return request(
|
|
`/api/listen/together/status/get`,
|
|
{},
|
|
createOption(query, 'weapi'),
|
|
)
|
|
}
|