mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
15 lines
241 B
JavaScript
15 lines
241 B
JavaScript
// 退出登录
|
|
|
|
const createOption = require('../util/option.js')
|
|
module.exports = (query, request) => {
|
|
return request(
|
|
'POST',
|
|
`/api/logout`,
|
|
{},
|
|
{
|
|
...createOption(query, 'weapi'),
|
|
uaType: 'pc',
|
|
},
|
|
)
|
|
}
|