1
0
Code Issues Pull Requests Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2022-10-19 22:58:56 +08:00
parent 8451e7a849
commit da900dc2b1
7 changed files with 287 additions and 57 deletions

View File

@@ -32,6 +32,7 @@ async function test() {
// 不是所有歌手都有个人主页 例如 https://music.163.com/#/artist?id=1079075
// let res = await songInfoUtils.fetchAll({ args: {} });
// let res = await playlistUtils.fetchAll();
// let res = await albumInfoUtils.fetch({ albumId: "9156", debug: true });
// let res = await artistInfoUtils.fetch({ artistId: "12023508" });
@@ -66,6 +67,8 @@ async function main(args) {
await lyricInfoUtils.fetchAll({ args: args });
else if (args.utils == "comment")
await commentUtils.fetchAll({ args: args });
else if (args.utils == "playlist")
await playlistUtils.fetchAll({ args: args });
else {
console.log("utils参数不匹配退出");
return;