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/feedback/weblog`,
|
|
query.data || {},
|
|
createOption(query, 'weapi'),
|
|
)
|
|
}
|